/* Dukáty LP — project styles */

:root {
  --dukaty-gold: #B69430;
  --dukaty-gold-bg: #B694301A;
  --dukaty-text-title: #7B600F;
  --dukaty-blue: #0078FF;
  --dukaty-blue-mute: #0078FF33;
  --dukaty-blue-badge: #E6F2FF;
  --dukaty-dark: #2A2003;
  --dukaty-font: "Nunito Sans", sans-serif;
}

.dukaty-lp {
  font-family: var(--dukaty-font);
  color: #000;
  background: #fff;
  box-sizing: border-box;
  padding-top: 12px;
  margin-top: -12px;
  overflow: hidden;
}

.dukaty-lp__container {
  max-width: 1406px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  padding-bottom: 15px;
}

.dukaty-lp *,
.dukaty-lp *::before,
.dukaty-lp *::after {
  box-sizing: border-box;
/*  font-family: var(--dukaty-font);*/
}

.dukaty-lp .underline {
  text-decoration: underline;
}

/* ===== Skeleton — loading state ===== */

.skeleton {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  color: transparent !important;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: dukaty-skel-shimmer 1.4s ease-in-out infinite;
}

@keyframes dukaty-skel-shimmer {
  100% { transform: translateX(100%); }
}

/* Skeleton card */
.card--skeleton .card__image {
  background-image: none !important;
  background-color: rgba(0, 0, 0, 0.07);
}
.card--skeleton .card__image::after,
.card--skeleton .card__title::after,
.card--skeleton .card__desc::after,
.card--skeleton .card__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 0, rgba(255,255,255,0.65) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: dukaty-skel-shimmer 1.4s ease-in-out infinite;
}
.card--skeleton .card__image,
.card--skeleton .card__title,
.card--skeleton .card__desc,
.card--skeleton .card__btn {
  position: relative;
  overflow: hidden;
  color: transparent !important;
  background-color: rgba(0, 0, 0, 0.07);
}
.card--skeleton .card__title { min-height: 1.4em; border-radius: 4px; }
.card--skeleton .card__desc  { min-height: 4.5em; border-radius: 4px; }
.card--skeleton .card__btn   { display: block; min-height: 2.5em; border-radius: 999px; border-color: transparent !important; box-shadow: none !important; }

/* Skeleton text block */
.skeleton--line {
  display: block;
  height: 1em;
  margin: 0.4em 0;
  border-radius: 4px;
}
.skeleton--line.skeleton--wide { width: 100%; }
.skeleton--line.skeleton--mid  { width: 70%; }
.skeleton--line.skeleton--short{ width: 35%; }
.skeleton--banner { width: 100%; min-height: 280px; border-radius: 8px; }
.skeleton--image  { width: 100%; min-height: 220px; border-radius: 8px; }
.skeleton--btn    { display: inline-block; min-width: 160px; min-height: 40px; border-radius: 999px; }

/* ===== Detail — skeleton while loading (data-state="loading") ===== */
[data-state="loading"] .breadcrumb__current,
[data-state="loading"] .detail-hero__title,
[data-state="loading"] .detail-hero__lead,
[data-state="loading"] .variants__type-label,
[data-state="loading"] .variants__weight > span:last-child,
[data-state="loading"] .product__title,
[data-state="loading"] .product__price,
[data-state="loading"] .product__meta-row > *,
[data-state="loading"] .description__title,
[data-state="loading"] .description__body p,
[data-state="loading"] .specs__row dt,
[data-state="loading"] .specs__row dd,
[data-state="loading"] .rec-card__title,
[data-state="loading"] .rec-card__avail,
[data-state="loading"] .rec-card__price,
[data-state="loading"] .detail-hero__media,
[data-state="loading"] .product__hero,
[data-state="loading"] .product__thumb,
[data-state="loading"] .variants__thumb,
[data-state="loading"] .rec-card__image {
  position: relative;
  overflow: hidden;
  color: transparent !important;
  background-color: rgba(0, 0, 0, 0.07) !important;
  background-image: none !important;
  border-radius: 4px;
}

[data-state="loading"] .breadcrumb__current::after,
[data-state="loading"] .detail-hero__title::after,
[data-state="loading"] .detail-hero__lead::after,
[data-state="loading"] .variants__type-label::after,
[data-state="loading"] .variants__weight > span:last-child::after,
[data-state="loading"] .product__title::after,
[data-state="loading"] .product__price::after,
[data-state="loading"] .product__meta-row > *::after,
[data-state="loading"] .description__title::after,
[data-state="loading"] .description__body p::after,
[data-state="loading"] .specs__row dt::after,
[data-state="loading"] .specs__row dd::after,
[data-state="loading"] .rec-card__title::after,
[data-state="loading"] .rec-card__avail::after,
[data-state="loading"] .rec-card__price::after,
[data-state="loading"] .detail-hero__media::after,
[data-state="loading"] .product__hero::after,
[data-state="loading"] .product__thumb::after,
[data-state="loading"] .variants__thumb::after,
[data-state="loading"] .rec-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: dukaty-skel-shimmer 1.4s ease-in-out infinite;
}

[data-state="loading"] .detail-hero__media img,
[data-state="loading"] .product__hero img,
[data-state="loading"] .product__thumb img,
[data-state="loading"] .rec-card__image img,
[data-state="loading"] .rec-card__avail *,
[data-state="loading"] .rec-card__price *,
[data-state="loading"] .product__thumb-overlay {
  visibility: hidden;
}

[data-state="loading"] .product__badges {
  display: none;
}

/* Empty placeholders (text filled by JS) — keep skeleton shape even without content */
[data-state="loading"] .detail-hero__title { min-height: 1.5em; }
[data-state="loading"] .detail-hero__lead { min-height: 2.6em; }
[data-state="loading"] .product__title { min-height: 1.5em; }
[data-state="loading"] .description__title { min-height: 1.4em; }
[data-state="loading"] .description__body p { min-height: 1em; }
[data-state="loading"] .rec-card__title { min-height: 1.2em; }
[data-state="loading"] .rec-card__avail { min-height: 2.4em; }

[data-state="loading"] .breadcrumb__current,
[data-state="loading"] .variants__type-label,
[data-state="loading"] .variants__weight > span:last-child,
[data-state="loading"] .product__price,
[data-state="loading"] .product__meta-row > *,
[data-state="loading"] .rec-card__price {
  display: inline-block;
  min-height: 1.2em;
  vertical-align: middle;
}
[data-state="loading"] .breadcrumb__current { min-width: 140px; }
[data-state="loading"] .variants__type-label { min-width: 120px; }
[data-state="loading"] .variants__weight > span:last-child { min-width: 110px; }
[data-state="loading"] .product__price { min-width: 180px; min-height: 1.4em; }
[data-state="loading"] .product__meta-row > * { min-width: 90px; }
[data-state="loading"] .rec-card__price { min-width: 100px; }

/* ===== Product gallery lightbox ===== */

.lightbox {
  border: none;
  padding: 0;
  margin: 0;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: transparent;
  color: #fff;
  font-family: var(--dukaty-font);
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__viewport {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.lightbox__counter {
  margin: 0;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.02em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--dukaty-text-title);
  z-index: 10;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  transform: scale(1.05);
}
.lightbox__close {
  top: 24px;
  right: 24px;
  transform: none;
}
.lightbox__close svg {
  width: 24px;
  height: 24px;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.05);
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav svg {
  width: 16px;
  height: 24px;
}
.lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .lightbox__close,
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__img {
    max-width: 96vw;
    max-height: 72vh;
  }
}

/* Gallery cursors */
.product__hero { cursor: pointer; }
.product__thumb:not(.product__thumb--more) { cursor: pointer; }
.product__thumb--more { cursor: pointer; }

/* Error fallback box */
.api-error {
  padding: 32px 16px;
  text-align: center;
  color: var(--dukaty-text-title);
  background: var(--dukaty-gold-bg);
  border-radius: 8px;
  margin: 24px 0;
}
.api-error__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.api-error__msg {
  font-size: 14px;
  margin: 0;
  color: #000;
}
.link-no-underline, .link-no-underline:hover{
  text-decoration: none;
}

/* ===== HERO — Figma 490:337 ===== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

/* Decorative gold wreaths */
.hero__wreath,
.products__wreath,
.contact__wreath,
.intro__wreath,
.detail-hero__wreath,
.product__wreath {
  position: absolute;
  width: 20.98%;
  height: auto;
  aspect-ratio: 262 / 245;
  pointer-events: none;
  z-index: 4;
}

/* Wreaths for mobile only */
.intro__wreath,
.products__wreath--m1,
.products__wreath--m2,
.products__wreath--m3 {
  display: none;
}

.hero__wreath--right {
  top: -5.35%;
  right: -11.49%;
}

.hero__wreath--left {
  bottom: -23.07%;
  left: -13.93%;
}

.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1248 / 741;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* "Pill" logo */
.hero__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 389px;
  height: auto;
  padding: 0px 70px 30px 70px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-sizing: content-box;
  z-index: 5;
}

/* Notch */
.hero__logo::before,
.hero__logo::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
}

.hero__logo::before {
  left: -19px;
  background: radial-gradient(circle at bottom left, transparent 19.5px, #fff 20.5px);
}

.hero__logo::after {
  right: -19px;
  background: radial-gradient(circle at bottom right, transparent 19.5px, #fff 20.5px);
}

/* Hero logo */
.hero-logo-flip {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 90;
  perspective: 1100px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.6s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-logo-flip--enter {
  opacity: 1;
  transform: scale(1);
}

.hero-logo-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 0.9s cubic-bezier(0.65, 0.02, 0.3, 1);
}

.hero-logo-flip__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(1px);
}

.hero-logo-flip__face--back {
  transform: rotateY(180deg) translateZ(1px);
}

.hero-logo-flip .hero-logo-flip__face img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-logo-flip .hero-logo-flip__face--front img {
  width: 100%;
  height: 100%;
}

/* In-between text */
.hero-logo-flip__text {
  font-family: var(--dukaty-font);
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 1.1;
  color: var(--dukaty-gold);
  text-align: center;
  white-space: nowrap;
  padding: 0 8px;
  letter-spacing: 0.01em;
}

/* Gold shine */
.hero-logo-flip__shine {
  position: absolute;
  top: -25%;
  left: 0;
  width: 35%;
  height: 150%;
  background: linear-gradient(100deg,
      transparent 0%,
      rgba(182, 148, 48, 0.5) 35%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(182, 148, 48, 0.5) 65%,
      transparent 100%);
  transform: translateX(-150%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-logo-flip__shine.is-shining {
  animation: hero-logo-shine 0.9s ease-in-out;
}

/* Blue shine */
.hero-logo-flip__shine--blue {
  background: linear-gradient(100deg,
      transparent 0%,
      rgba(0, 120, 255, 0.5) 35%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(0, 120, 255, 0.5) 65%,
      transparent 100%);
}

/* Reduced motion */
.hero-logo-flip--instant {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-logo-flip--instant .hero-logo-flip__inner {
  transition: none;
  transform: rotateY(0deg);
}

@keyframes hero-logo-shine {
  0% {
    transform: translateX(-150%) rotate(8deg);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(420%) rotate(8deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-flip {
    transition: none;
  }

  .hero-logo-flip__inner {
    transition: none;
  }

  .hero-logo-flip__shine {
    display: none;
  }
}

/* Benefits bar */
.hero__benefits--desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  width: calc(100% - 48px);
  max-width: 1200px;
  height: 219px;
  background: var(--dukaty-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 40px;
  z-index: 3;
}

.hero__benefits--mobile {
  display: none;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
  color: #fff;
}

.benefit__icon {
  width: 80px;
  height: 80px;
}

.dukaty-lp .benefit__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: #fff;
  white-space: nowrap;
}

.dukaty-lp .benefit__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

/* ===== INTRO — Figma 490:363 ===== */
.inner_container {
  padding: 0 65px;
}

.intro {
  position: relative;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.intro__notes {
  background: var(--dukaty-gold-bg);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: center;
  gap: 136px;
}

.dukaty-lp .intro__note {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.intro__note--left {
  max-width: 454px;
}

.intro__note--right {
  max-width: 497px;
}

.intro__note strong {
  font-weight: 700;
}

.intro__timeline {
  position: relative;
  width: 100%;
  max-width: 1136px;
  aspect-ratio: 1136 / 142;
  margin: 17px auto 0;
}

/* Timeline animation (Lottie) */
.intro__animation {
  width: 100%;
  max-width: 1136px;
  margin: 38px auto 58px;
}

.intro__animation-lottie {
  width: 100%;
  height: auto;
  display: block;
}

.intro__animation-lottie--desktop { aspect-ratio: 3000 / 550; }
.intro__animation-lottie--mobile  { aspect-ratio: 1080 / 1200; display: none; }

.intro__year {
  position: absolute;
  top: 79.6%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

.intro__year--2016 {
  left: 0;
}

.intro__year--2026 {
  left: 40%;
}

.intro__tick,
.intro__line {
  position: absolute;
  background: var(--dukaty-gold);
  top: 43.66%;
}

.intro__tick {
  display: none;
  width: 1px;
  height: 24.17%;
}

.intro__line {
  height: 1px;
}

.intro__line--1 {
  left: 0;
  width: 62%;
}

.intro__line--2 {
  left: 77%;
  width: 21%;
}

.intro__line--3 {
  display: none;
}

.intro__logo--dukaty {
  position: absolute;
  left: 17.96%;
  top: 11.97%;
  width: 7.92%;
  aspect-ratio: 1 / 1;
  height: auto;
    background: white;
    border-radius: 99999px;
    padding: 5px;
}

.intro__logo--cm {
  position: absolute;
  left: 64.52%;
  top: 16.90%;
  width: 10.56%;
  aspect-ratio: 120 / 75;
  height: auto;
}

/* ===== Intro timeline — intro animation ===== */
.intro__timeline--anim .intro__logo--dukaty {
  transform-origin: 50% 50%;
  will-change: left, transform, opacity;
}

/* Year band */
.intro__year--travel {
  position: absolute;
  top: 79.6%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* Edge years 2016 / 2026 */
.intro__year--anchor {
  font-size: 20px;
  font-weight: 700;
  opacity: 1;
}

.intro__timeline--anim.is-playing .intro__year--2016,
.intro__timeline--anim.is-playing .intro__year--2026 {
  opacity: 0;
}

/* Blue logo pulse */
.intro__logo--merged {
  animation: introMergePulse 0.5s ease;
}

@keyframes introMergePulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.dukaty-lp .intro__closing {
  margin: 41px 24px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

/* ===== PRODUCTS — Figma 490:377 ===== */

.products {
  position: relative;
  margin-top: 120px;
  padding-bottom: 0;
}

/* Wreath bottom-right */
.products__wreath--right {
  right: -21.07%;
  bottom: -2.89%;
}

.products:has(.products__tab--no-wreath.tab--active) .products__wreath {
  display: none;
}

.dukaty-lp .products__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0 0 43px;
}

/* ===== Tabs — shared component ===== */
.tabs {
  --tabs-h: 100px;
  --tab-r: 12px;
  --tab-notch-w: 1px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 21px;
  height: var(--tabs-h);
}

/* Bottom line */
.tabs::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--dukaty-blue);
  z-index: 0;
  left: -10px;
  right: -10px;
}

.tab {
  --tab-stroke: var(--dukaty-blue-mute);
  --tab-fill: #fff0;
  --tab-bw: 1.2px;
  position: relative;
  flex: 1;
  height: calc(var(--tabs-h) - var(--tab-r));
  background: var(--tab-fill);
  box-shadow: 0 var(--tab-r) 0 var(--tab-fill);
  border: var(--tab-bw) solid var(--tab-stroke);
  border-bottom: 0;
  border-radius: var(--tab-r) var(--tab-r) 0 0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all .3s ease;
  padding-top: 12px !important;
}

/* Concave bottom corners */
.tab::before,
.tab::after {
  content: '';
  position: absolute;
  top: 100%;
  width: var(--tab-r);
  height: var(--tab-r);
}

.tab::before {
  right: 100%;
  background: radial-gradient(circle at top left,
      #fff0 calc(var(--tab-r) - var(--tab-notch-w) - 0.3px),
      var(--tab-stroke) calc(var(--tab-r) - var(--tab-notch-w) + 0.3px) calc(var(--tab-r) - 0.3px),
      var(--tab-fill) calc(var(--tab-r) + 0.3px));
}

.tab::after {
  left: 100%;
  background: radial-gradient(circle at top right,
      #fff0 calc(var(--tab-r) - var(--tab-notch-w) - 0.3px),
      var(--tab-stroke) calc(var(--tab-r) - var(--tab-notch-w) + 0.3px) calc(var(--tab-r) - 0.3px),
      var(--tab-fill) calc(var(--tab-r) + 0.3px));
}

.tab:hover {
  --tab-stroke: var(--dukaty-blue);
}

.tab--active {
  --tab-stroke: var(--dukaty-blue);
  --tab-fill: #fff;
  --tab-bw: 1.5px;
  z-index: 2;
}

/* ===== Products — year tabs ===== */
.products__tabs {
  margin-bottom: 45px;
}

.products__tab {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* Icons */
.dukaty-lp .icon {
  display: inline-block;
  flex: 0 0 auto;
}

/* Text link */
.dukaty-lp .link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--dukaty-blue);
  text-decoration-thickness: 10%;
  text-underline-offset: 15%;
  text-underline-position: from-font;
}

/* Checkmark in blue circle */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1.5px solid var(--dukaty-blue);
  border-radius: 50%;
  background: #fff;
  color: #000;
}

.check .icon {
  width: auto;
  height: 9px;
  display: none;
}

.tab--active>.check .icon,
.variants__weight--active>.check .icon {
  display: inline-block;
}

.products__tab .check {
  position: absolute;
  left: 37px;
}

.products__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 10;
}

/* Card */
.card {
  background: #fff;
  border: 1px solid var(--dukaty-blue-mute);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:not(:has(.card__btn--disabled)) {
  cursor: pointer;
}

.card__image {
  height: 280px;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

.card:not(:has(.card__btn--disabled)):hover .card__image img,
.card:not(:has(.card__btn--disabled)):focus-within .card__image img {
  transform: scale(1.07);
}

.card__body {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dukaty-lp .card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0;
  width: 100%;
  max-width: 334px;
}

.dukaty-lp .card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  margin: 0;
  width: 100%;
  max-width: 334px;
  flex: 1 1 auto;
}

.dukaty-lp .card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 356px;
/*  padding: 8px 28px;
  border: 1px solid var(--dukaty-blue);
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: #fff;
  cursor: pointer;
  transition: all .3s ease;*/
}

/*.dukaty-lp .card__btn,
.dukaty-lp .card__btn:hover,
.dukaty-lp .card__btn:focus,
.dukaty-lp .card:hover .card__btn {
  text-decoration: none;
}*/

/* Stretched link over the whole card */
a.card__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hover over the whole card fills the button */
/*.card:not(:has(.card__btn--disabled)):hover .card__btn,
.card:not(:has(.card__btn--disabled)):focus-within .card__btn {
  background: var(--dukaty-blue);
  color: #fff;
}*/

.card__btn--disabled {
  opacity: .3;
  pointer-events: none;
}

.products__empty {
  padding: 80px 24px;
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  border: 1px dashed var(--dukaty-blue-mute);
  border-radius: 12px;
}

/* ===== BANNER — Figma 490:394 ===== */

.cd-banner {
  margin-top: 80px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1410;
  min-height: 423px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.cd-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/banner-sortiment.png');
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  z-index: 0;
  pointer-events: none;
}

.cd-banner:hover::before,
.cd-banner:focus-within::before {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .cd-banner::before {
    transition: none;
  }

  .cd-banner:hover::before,
  .cd-banner:focus-within::before {
    transform: none;
  }
}

.banner__inner {
  position: relative;
  z-index: 1;
  padding: 83px 94px 35px;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.banner__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dukaty-lp .banner__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.dukaty-lp .banner__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.dukaty-lp .banner__cta {
  align-self: flex-start;
/*  padding: 12px 28px 12px;
  background: var(--dukaty-blue);
  color: #fff;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s ease;
  text-decoration: none;*/
}

/*.dukaty-lp .banner__cta:hover,
.dukaty-lp .banner:hover .banner__cta,
.dukaty-lp .banner:focus-within .banner__cta {
  background: #0066d9;
  color: #fff;
  text-decoration: none;
}
*/
/*.dukaty-lp .banner__cta,
.dukaty-lp .banner__cta:hover,
.dukaty-lp .banner:hover .banner__cta {
  text-decoration: none;
}*/

/* Stretched click over the whole area */
.banner__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== CONTACT — Figma 521:4123 ===== */

.contact {
  position: relative;
  margin-top: 80px;
}

/* Wreath bottom-left */
.contact__wreath--right {
  left: -17.94%;
  top: 40.02%;
}

.contact__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact__person {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact__heading {
  grid-column: 2;
}

.contact__info {
  grid-column: 3;
}

.dukaty-lp .contact__pretitle {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #070707;
  margin: 0;
}

.dukaty-lp .contact__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  margin: 12px 0 23px;
}

.contact__media {
  grid-column: 4;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.contact__photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 259 / 312;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #0078FF33;
}

.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dukaty-lp .contact__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
  margin: 0 0 10px;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.contact__link:first-of-type {
  margin-top: 0;
}

.contact__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===== Slick base (layout loads slick.min.js, not slick.css) ===== */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus { outline: none; }
.slick-list.dragging { cursor: pointer; }
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track::before,
.slick-track::after {
  display: table;
  content: '';
}
.slick-track::after { clear: both; }
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide { display: flex; }

/* ===== TEAM — Figma 490:448 ===== */

.team {
  margin-top: 80px;
  padding-bottom: 80px;
}

.team__intro {
  width: 218px;
  flex-shrink: 0;
  align-self: center;
}

.dukaty-lp .team__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0 0 16px;
}

.dukaty-lp .team__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.team {
  display: grid;
  grid-template-columns: 218px 1fr;
  column-gap: 32px;
  row-gap: 0;
  align-items: start;
}

.team__viewport {
  overflow: hidden;
}

.team__track {
  touch-action: pan-y;
}

.team__track img,
.team__track a,
.recommended__track img,
.recommended__track a {
  -webkit-user-drag: none;
  user-drag: none;
}

.team__member {
  width: calc((var(--cw, 100%) - 72px) / 3.5);
  margin: 0 24px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 19px;
  cursor: pointer;
  font-family: var(--dukaty-font);
  touch-action: pan-y;
}

.team__member img,
.team__member a {
  touch-action: pan-y;
}

.team__photo {
  height: 304px;
  border-radius: 12px;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

@media (hover: hover) {
  .team__member:hover .team__photo img {
    transform: scale(1.07);
  }
}

.team__member:focus-visible .team__photo img {
  transform: scale(1.07);
}

.dukaty-lp .team__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: -.006em;
  display: flex;
  flex-direction: row;
  gap: .3em;
}

.team__nav {
  grid-column: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding: 0 18px;
}

.team__nav-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.team__nav-btn {
  color: var(--dukaty-blue);
}

.team__nav-btn .icon {
  width: auto;
  height: 18px;
}

.team__nav-btn:hover {
  background: var(--dukaty-blue-badge);
}

.team__nav-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.team__dots,
.recommended__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team__dot,
.recommended__dot {
  width: 20px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: var(--dukaty-blue-mute);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}

.team__dot--active,
.recommended__dot--active {
  background: var(--dukaty-blue);
}

/* ===== Tablet — Our faces carousel 2-up (769–1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .team__member {
    width: calc((var(--cw, 100%) - 24px) / 2);
  }

  .team__photo {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* ===== TEAM MODAL — Figma 517:4051 / 694:801 / 694:825 / 694:849 ===== */

.team-modal {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: min(1392px, calc(100vw - 32px));
  width: 100%;
  max-height: calc(100vh - 32px);
  margin: auto;
  overflow: visible;
}

.team-modal::backdrop {
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.team-modal__inner {
  position: relative;
  background: #fff;
  border: 2px solid var(--dukaty-gold);
  border-radius: 12px;
  overflow: hidden;
  height: min(737px, calc(100vh - 32px));
  display: flex;
  flex-direction: column;
  padding: 64px 96px 100px;
  background-image:
    linear-gradient(135deg, transparent 70%, rgba(182, 148, 48, .55) 100%),
    linear-gradient(-45deg, transparent 70%, rgba(182, 148, 48, .55) 100%);
}

/* Thin gold scrollbar */
.team-modal__content,
.team-modal__bio {
  scrollbar-width: thin;
  scrollbar-color: var(--dukaty-gold) transparent;
}

.team-modal__content::-webkit-scrollbar,
.team-modal__bio::-webkit-scrollbar {
  width: 6px;
}

.team-modal__content::-webkit-scrollbar-track,
.team-modal__bio::-webkit-scrollbar-track {
  background: transparent;
}

.team-modal__content::-webkit-scrollbar-thumb,
.team-modal__bio::-webkit-scrollbar-thumb {
  background: var(--dukaty-gold);
  border-radius: 3px;
}

/* Decorative gold wreaths */
.team-modal__wreath {
  display: none;
  position: absolute;
  width: 158px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.team-modal__close {
  position: absolute;
  top: 31px;
  right: 31px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.team-modal__close svg {
  width: 100%;
  height: 100%;
}

.team-modal__content {
  display: flex;
  gap: 132px;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
}

/* Left column */
.team-modal__media {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 501 / 573;
}

.team-modal__photo {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #f0f0f0;
}

.team-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-modal__title--inline {
  display: none;
}

/* Right column */
.team-modal__bio {
  flex: 1 1 564px;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  gap: 56px;
  overflow-y: auto;
  margin-right: -6px;
  padding-right: 6px;
}

.dukaty-lp .team-modal__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dukaty-text-title);
  margin: 0;
}

.dukaty-lp .team-modal__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}

.team-modal__text p {
  margin: 0 0 .9em;
}

.team-modal__text-rest p:last-child {
  margin-bottom: 0;
}

.team-modal__text em {
  font-style: italic;
}

.team-modal__nav {
  position: absolute;
  bottom: 31px;
  left: 220px;
  right: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.team-modal__nav-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.team-modal__nav-btn {
  color: rgba(182, 148, 48, .55);
}

.team-modal__nav-btn .icon {
  width: auto;
  height: 18px;
}

.team-modal__nav-btn:hover {
  background: var(--dukaty-gold-bg);
  color: var(--dukaty-gold);
}

.team-modal__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-modal__dot {
  width: 20px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: #dcdcdc;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}

.team-modal__dot--active {
  background: var(--dukaty-gold);
}

/* ===== Modal open/close — envelope flap unfolding ===== */

.team-modal[open]::backdrop {
  animation: teamModalBackdrop .4s ease both;
}

.team-modal[open]:not(.team-modal--closing) .team-modal__inner {
  transform-origin: top center;
  animation: teamModalUnfold .55s cubic-bezier(.16, .84, .44, 1) backwards;
}

.team-modal--closing::backdrop {
  animation: teamModalBackdrop .32s ease reverse both;
}

.team-modal--closing .team-modal__inner {
  transform-origin: top center;
  animation: teamModalFold .32s cubic-bezier(.5, 0, .75, .4) both;
}

@media (max-width: 1200px){
  .team-modal__content { 
    gap: 40px;
  }
  .team-modal__media {
    flex: 0 0 46%;
  }
  .contact__inner {
    grid-template-columns: 0fr 1.6fr 1fr 1fr;
  }
}

@keyframes teamModalBackdrop {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes teamModalUnfold {
  from {
    opacity: 0;
    transform: perspective(1800px) rotateX(-34deg) translateY(-36px) scale(.96);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: perspective(1800px) rotateX(0deg) translateY(0) scale(1);
  }
}

@keyframes teamModalFold {
  from {
    opacity: 1;
    transform: perspective(1800px) rotateX(0deg) translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: perspective(1800px) rotateX(-22deg) translateY(-24px) scale(.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-modal[open]:not(.team-modal--closing) .team-modal__inner {
    animation: teamModalBackdrop .15s ease backwards;
  }

  .team-modal--closing .team-modal__inner {
    animation: teamModalBackdrop .15s ease reverse both;
  }
}

@media (max-width: 768px) {
  .team-modal {
    width: 98vw;
    max-width: 98vw;
    max-height: 90vh;
  }

  .team-modal__inner {
    padding: 80px 20px 80px;
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
  }

  .team-modal__content {
    flex: 1 1 auto;
    min-height: 0;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    margin-right: -8px;
    padding-right: 8px;
    font-size: 12px;
  }

  .team-modal__media {
    float: left;
    width: clamp(110px, 36vw, 160px);
    height: auto;
    aspect-ratio: auto;
    margin: 0 16px 12px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .team-modal__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 129 / 148;
    border-radius: 10px;
  }

  .team-modal__bio {
    display: block;
    gap: 0;
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
  }

  .team-modal__bio>.team-modal__title {
    display: none;
  }

  .team-modal__title--inline {
    display: block;
  }

  .team-modal__text,
  .team-modal__text-first,
  .team-modal__text-rest {
    display: block;
  }

  /* Clearfix (cancel float) */
  .team-modal__text::after {
    content: "";
    display: block;
    clear: both;
  }

  .dukaty-lp .team-modal__title--inline {
    font-size: 16px;
    margin: 0;
    text-align: left;
    color: #7B600F;
  }

  .dukaty-lp .team-modal__text {
    font-size: 13px;
  }

  .team-modal__nav {
    left: 20px;
    right: 20px;
  }

  .team-modal__wreath {
    display: block;
  }

  .team-modal__wreath--top {
    top: -70px;
    right: 90px;
    width: 120px;
    height: 120px;
  }

  .team-modal__wreath--bottom {
    bottom: -90px;
    left: 40px;
    width: 120px;
    height: 120px;
  }
}

/* ===== Mobile — sections below hero (≤768px) — Figma 509:2735 ===== */

@media (max-width: 768px) {

  .inner_container {
    padding: 0;
  }

  /* Products */
  .products {
    margin-top: 28px;
  }

  .dukaty-lp .products__title {
    font-size: 24px;
    margin-bottom: 28px;
    margin-top: 35px;
    text-align: center;
  }

  .products__tabs {
    --tabs-h: 50px;
    --tab-r: 8px;
    gap: 16px;
    margin-bottom: 28px;
  }

  .dukaty-lp .products__tab {
    font-size: 20px;
    gap: 8px;
    line-height: normal;
  }

  .products__tab .check {
    position: static;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .products__tab .check .icon {
    height: 7px;
  }

  .products__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card__image {
    height: 220px;
  }

  .dukaty-lp .card__title {
    font-size: 16px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .dukaty-lp .card__desc {
    font-size: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .dukaty-lp .card__btn {
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .dukaty-lp .card__body {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Banner */
  .cd-banner {
    margin: 28px -16px 0;
    min-height: 397px;
    border-radius: 0;
  }

  .cd-banner::before {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url('../images/banner-sortiment-mobile.jpg');
    background-position: center center;
  }

  .banner__inner {
    padding: 81px 20px 40px;
    gap: 51px;
    width: 100%;
    max-width: 100%;
  }

  .banner__text {
    gap: 32px;
    text-align: center;
  }

  .dukaty-lp .banner__title {
    font-size: 24px;
  }

  .dukaty-lp .banner__subtitle {
    font-size: 16px;
    font-weight: 400;
  }

  .dukaty-lp .banner__cta {
    width: auto;
    padding: 12px 28px 12px;
    font-size: 12px;
    align-self: center;
  }

  /* Contact */
  .contact {
    margin-top: 28px;
  }

  .contact__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 320px;
  }

  .contact__person {
    flex: 1 1 auto;
    align-items: center;
    text-align: center;
  }

  .contact__media {
    flex: 1 1 auto;
  }

  .contact__photo {
    width: 80%;
    max-width: none;
    aspect-ratio: 288 / 337;
    border-radius: 16px;
  }

  .dukaty-lp .contact__pretitle {
    font-size: 20px;
    max-width: 200px;
  }

  .dukaty-lp .contact__title {
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
  }

  .dukaty-lp .contact__name {
    font-size: 16px;
    margin: 0 0 12px;
  }

  .contact__link {
    margin-top: 12px;
    font-size: 12px;
    margin-bottom: -5px;
  }

  /* tel/e-mail */
  .contact__link span {
    text-decoration: underline;
    text-decoration-color: var(--dukaty-blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  /* Team */
  .team {
    grid-template-columns: 76px 1fr;
    column-gap: 14px;
    margin-top: 28px;
    padding-bottom: 40px;
  }

  .team__intro {
    width: auto;
    align-self: center;
  }

  .dukaty-lp .team__title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .dukaty-lp .team__subtitle {
    font-size: 12px;
  }

  .team__member {
    width: calc((var(--cw, 100%) - 12px) / 2);
    margin-right: 12px;
    gap: 10px;
  }

  .team__photo {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 6px;
  }

  .dukaty-lp .team__name {
    flex-direction: column;
    gap: 0;
  }

  .dukaty-lp .team__name .firstname {
    font-size: 12px;
    font-weight: 400;
  }

  .dukaty-lp .team__name .lastname {
    font-size: 16px;
    font-weight: 700;
  }

  .team__nav {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    padding: 0;
  }

  .team__nav-btn {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
  }

  .team__nav-btn .icon {
    height: 18px;
  }

  .team__dots {
    gap: 6px;
  }

  .team__dot {
    width: 14px;
  }
}

/* ===== Mobile ===== */

@media (max-width: 768px) {
  .dukaty-lp__container {
    padding: 0 16px;
  }

  .hero__media {
    aspect-ratio: 294 / 220;
    order: 0;
  }

  .hero__benefits--desktop {
    display: none;
  }

  /* === Wreaths — mobile === */
  .hero__wreath--left,
  .contact__wreath--right {
    display: none;
  }

  /* 6 mobile wreaths */
  .hero__wreath--right,
  .intro__wreath,
  .products__wreath--right,
  .products__wreath--m1,
  .products__wreath--m2,
  .products__wreath--m3 {
    display: block;
    width: 52.08%;
  }

  .hero__wreath--right {
    top: 46.27%;
    right: -19.27%;
  }

  .intro__wreath {
    top: 47.42%;
    right: -39.93%;
  }

  .products__wreath--m1 {
    top: 6.88%;
    left: -27.08%;
  }

  .products__wreath--m2 {
    top: 28.70%;
    right: -41.67%;
  }

  .products__wreath--m3 {
    top: 55.54%;
    left: -27.78%;
  }

  .products__wreath--right {
    top: 77.30%;
    right: -21.18%;
    bottom: auto;
  }

  /* Logo: on mobile */
  .hero__logo {
    position: static;
    transform: none;
    order: 1;
    display: block;
    margin: 28px auto 0;
    width: 256px;
    max-width: 100%;
    padding: 0;
    background: none;
    border-radius: 0;
  }

  .hero__logo::before,
  .hero__logo::after {
    display: none;
  }

  .hero__benefits--mobile {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 111.5px));
    justify-content: center;
    gap: 24px 20px;
    padding: 24px 16px;
    margin-top: 28px;
    background: var(--dukaty-dark);
    border-radius: 12px;
    z-index: 10;
  }

  .hero__benefits--mobile .benefit__icon {
    width: 46px;
    height: 46px;
  }

  .dukaty-lp .hero__benefits--mobile .benefit__title {
    font-size: 12px;
    line-height: 1.25;
    color: var(--dukaty-gold);
    white-space: normal;
  }

  .dukaty-lp .hero__benefits--mobile .benefit__desc {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
  }

  /* Intro */
  .intro {
    margin-top: 28px;
    gap: 28px;
  }

  .intro__notes {
    flex-direction: column;
    gap: 22px;
    border-radius: 20px;
  }

  .dukaty-lp .intro__note,
  .intro__note--left,
  .intro__note--right {
    font-size: 12px;
    max-width: 100%;
  }

  .intro__timeline {
    aspect-ratio: auto;
    width: 258px;
    height: 422px;
    margin: 0 auto;
  }
  .intro__animation {
    width: 341px;
    max-width: 341px;
    margin: 0 auto;
  }

  .intro__animation-lottie--desktop {
    display: none;
  }

  .intro__animation-lottie--mobile {
    display: block;
  }

  .intro__year--2016 {
    left: 6px;
    top: 0;
  }

  .intro__year--2026 {
    left: 0;
    top: 163px;
  }

  .intro__tick {
    display: none;
  }

  .intro__line--1 {
    left: 100px;
    top: 20px;
    width: 1px;
    height: 192px;
  }

  .intro__line--2 {
    left: 100px;
    top: 286px;
    width: 1px;
    height: 30px;
  }

  .intro__line--3 {
    display: none;
  }

  /* Year band */
  .intro__year--travel {
    left: 12px;
    top: auto;
    transform: translateY(-50%);
    font-size: 12px;
  }

  .intro__year--anchor {
    font-size: 16px;
  }

  .intro__logo--dukaty {
    left: 70px;
    top: 30px;
    width: 60px;
  }

  .intro__logo--cm {
    left: 55px;
    top: 222px;
    width: 89.62px;
  }

  .dukaty-lp .intro__closing {
    margin: 0 auto;
    max-width: 275px;
    font-size: 12px;
  }
}

/* =========================================================================
   ===== PRODUCT DETAIL — Figma 263:2970 (desktop), 509:1535 (mobile) =====
   ========================================================================= */

.dukaty-detail {
  padding: 0 16px;
}

/* Shared button styles */
/*.dukaty-detail .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
}

.dukaty-detail .btn .icon {
  height: 20px;
  width: auto;
}

.dukaty-detail .btn[aria-disabled="true"] {
  opacity: .4;
  pointer-events: none;
}

.dukaty-detail .btn--primary {
  background: var(--dukaty-blue);
  color: #fff;
}

.dukaty-detail .btn--primary:hover,
.dukaty-detail .btn--primary:focus-visible {
  background: #0066d9;
  color: #fff;
}

.dukaty-detail .btn--outline {
  border-color: var(--dukaty-blue);
  color: #000;
  background: #fff;
}

.dukaty-detail .btn--outline:hover,
.dukaty-detail .btn--outline:focus-visible {
  background: var(--dukaty-blue);
  color: #fff;
}
*/
/* ---- Breadcrumbs ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin-top: 12px;
  font-size: 15px;
  color: #000;
}

.breadcrumb__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--dukaty-blue);
  border-radius: 32px;
  color: #000;
}

.breadcrumb__home .icon {
  width: 14px;
  height: 14px;
}

.breadcrumb__sep {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.breadcrumb__link {
  color: var(--dukaty-blue);
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__current {
  color: #000;
}

/* ---- Hero block ---- */
.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: 519px 1fr;
  align-items: center;
  gap: 80px;
  padding: 100px 110px;
  margin-top: 8px;
  border-radius: 12px;
  background: #ececec;
  isolation: isolate;
  min-height: 537px;
}

.detail-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 12px;
  overflow: hidden;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  max-width: 519px;
}

.dukaty-detail .detail-hero__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #000;
}

.dukaty-detail .detail-hero__lead {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  max-width: 502px;
}

/*.detail-hero__cta {
  padding: 12px 28px 9px;
}*/

/* Decorative wreath */
.detail-hero__wreath {
  right: -8%;
  bottom: -11%;
}

/* ---- Back link (inside hero banner, top-left) ---- */
.detail-back {
  position: absolute;
  top: 66px;
  left: 110px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
/*  padding: 8px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  text-decoration: none;*/
  background: transparent;
/*  border: 1px solid var(--dukaty-blue);
  border-radius: 32px;
  transition: all .3s ease;*/
}

/*.dukaty-detail .detail-back:hover,
.dukaty-detail .detail-back:focus-visible {
  background: var(--dukaty-blue);
  color: #fff;
  text-decoration: none;
}*/

/* ---- Variants ---- */
.variants {
  margin-top: 36px;
  padding: 30px 85px 0 85px;
}

.dukaty-detail .variants__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 74px 0;
  color: #000;
}

.variants__row {
  display: contents;
}

.variants__select {
  display: contents;
}

.variants__trigger {
  display: none;
}

.variants__chooser {
  margin-bottom: 24px;
}

/* Mint selection */
.variants__type {
  justify-content: flex-start;
  gap: 23px;
  padding: 0 16px;
  text-align: left;
  font: inherit;
}

/* Mint thumbnail in type tab (desktop): <check> <thumb> <label>. */
.variants__thumb {
  display: inline-block;
  width: 65px;
  height: 69px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 65px;
}

.variants__thumb--silver {
  width: 69px;
  flex-basis: 69px;
}

.variants__type-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.variants__weights {
  display: flex;
  font-size: 12px;
  font-weight: 700;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 56px;
  margin-top: 45px;
}

.variants__weight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  transition: all .3s ease;
}

.variants__weight:hover {
  background: #B694301A;
}

/* ---- Product main row ---- */
.product {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 584px 588px;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  margin-left: auto;
  margin-right:auto;
  padding: 0 9px;
  max-width: 1250px;
}

/* Decorative wreaths */
.product__wreath {
  z-index: -1;
}

.product__wreath--tr {
  top: 76%;
  right: -8%;
}

.product__wreath--bl {
  bottom: -50px;
  left: -18%;
}

/* gallery */
.product__gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--dukaty-blue-mute);
}

.product__hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product__thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid var(--dukaty-blue-mute);
  overflow: hidden;
}

.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

/* ===== Gallery hover ===== */
.product__hero img,
.product__thumb:not(.product__thumb--more) img {
  transition: transform .35s ease;
}
.product__hero:hover img,
.product__thumb:not(.product__thumb--more):hover img,
.product__thumb:not(.product__thumb--more):focus-visible img {
  transform: scale(1.06);
}

.product__hero::before,
.product__thumb:not(.product__thumb--more)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) scale(.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B600F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='6.5'/%3E%3Cpath d='M10 7v6M7 10h6'/%3E%3Cpath d='M14.8 14.8l5 5'/%3E%3C/svg%3E")
    center / 26px no-repeat;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  z-index: 2;
}
.product__thumb:not(.product__thumb--more)::before {
  width: 40px;
  height: 40px;
  background-size: 20px;
}
.product__hero:hover::before,
.product__thumb:not(.product__thumb--more):hover::before,
.product__thumb:not(.product__thumb--more):focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product__thumb--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.product__thumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}

/* info column */
.product__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dukaty-detail .product__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #000;
}

.product__badges {
  display: flex;
  gap: 12px;
}

.dukaty-detail .badge {
  display: inline-block;
  background: var(--dukaty-blue-badge);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
}

.product__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border: 1px solid var(--dukaty-blue-mute);
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}

.product__meta-row strong {
  font-weight: 700;
  color: #000;
}

.product__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 0;
}

.dukaty-detail .product__price {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.product__buy {
  width: 280px;
  height: 44px;
  padding: 8px 28px;
}

.dukaty-detail .product__price-note {
  font-size: 15px;
  margin: 0;
  opacity: .75;
}

.dukaty-detail .product__price-note--mobile {
  display: none;
}

.dukaty-detail .product__price-note--italic {
  font-style: italic;
  opacity: .5;
  margin-top: 4px;
}

.product__price-note a {
  color: inherit;
}

.product__shipping {
  border: 1px solid var(--dukaty-blue-mute);
  border-radius: 8px;
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.product__shipping-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dukaty-detail .product__shipping-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.dukaty-detail .product__shipping-status {
  font-size: 16px;
  font-weight: 700;
  color: #1B7E6E;
  margin: 0;
}

.dukaty-detail .product__shipping-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.product__shipping-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}

.product__shipping-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product__shipping-list li>span {
  position: relative;
  padding-left: 24px;
}

.product__shipping-list li>span::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: inherit;
}

.product__shipping-list strong {
  font-weight: 700;
}

.product__shipping-list b {
  font-weight: 600;
}

.product__shipping-list em {
  font-style: normal;
  color: #1B7E6E;
  text-align: right;
}

.product__shipping-list .is-muted {
  opacity: .4;
}

.product__shipping-list .is-muted em {
  color: inherit;
}

.product__buy-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border: 1px solid var(--dukaty-blue-mute);
  border-radius: 8px;
}

.dukaty-detail .product__buy-extra p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.product__buy-extra .btn {
  padding: 8px 28px;
  height: 40px;
}

.product__options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.product__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.product__option .icon {
  width: 24px;
  height: 24px;
}

/* ---- Description ---- */
.description {
  position: relative;
  isolation: isolate;
  margin-top: 64px;
  padding: 0 9px;
  display: grid;
  grid-template-columns: 588px 588px;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.description__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dukaty-detail .description__label {
  font-size: 15px;
  font-weight: 500;
  color: #395063;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
}

.dukaty-detail .description__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #000;
}
.description__body {
  padding-bottom: 244px;
}
.description__body p {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #000;
}

.description__body p:last-child {
  margin-bottom: 0;
}

.description__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.specs {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.specs__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid var(--dukaty-blue-mute);
  font-size: 16px;
}

.specs__row dt {
  font-weight: 400;
  color: #000;
}

.specs__row dd {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.specs__row dd a {
  color: inherit;
}

/* Heureka block */
.heureka {
  display: grid;
  grid-template-columns: 137px 220px 188px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--dukaty-blue-mute);
  border-radius: 8px;
  background: #fff;
}

.heureka__badge {
  width: 137px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heureka__badge img {
  width: 100%;
  height: auto;
  display: block;
}

.heureka__text {
  width: 220px;
}

.heureka__cta {
  width: 188px;
}

.dukaty-detail .heureka__value {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.dukaty-detail .heureka__label {
  font-size: 16px;
  margin: 13px 0 0;
  line-height: 1.2;
}

.heureka__cta {
  padding: 10px 28px 8px;
  height: 40px;
}

/* ---- Recommended ---- */
.recommended {
  margin: 64px -19px 48px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: -1px 3px 7.5px rgba(0, 34, 62, 0.2);
  user-select: none;
  -webkit-user-select: none;
}

.recommended__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dukaty-detail .recommended__label {
  font-size: 15px;
  font-weight: 500;
  color: #395063;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.recommended__view-all {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.recommended__view-all .icon {
  width: 82px;
  height: 15px;
  color: var(--dukaty-blue);
}

.recommended__viewport {
  overflow: hidden;
  margin-bottom: 18px;
}

.recommended__track {
  touch-action: pan-y;
}

.rec-card {
  width: calc((var(--cw, 100%) - 60px) / 5);
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dukaty-blue-mute);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.rec-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Edge-to-edge image */
.rec-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.rec-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

@media (hover: hover) {
  .rec-card:hover .rec-card__image img {
    transform: scale(1.07);
  }
}

.rec-card:focus-within .rec-card__image img {
  transform: scale(1.07);
}

.rec-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.dukaty-detail .rec-card__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: #000;
}

.dukaty-detail .rec-card__avail {
  margin: 0;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--dukaty-blue);
}

.rec-card__avail-secondary {
  color: #219653;
}

.dukaty-detail .rec-card__price {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
}

.rec-card__price span {
  font-size: 15px;
  font-weight: 400;
  color: #00223E;
}

.rec-card__btn {
  width: 100%;
  padding: 8px 0;
  height: 40px;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.dukaty-detail .rec-card:hover .rec-card__btn,
.dukaty-detail .rec-card:focus-within .rec-card__btn {
  background: var(--dukaty-blue);
  color: #fff;
}

.recommended__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.recommended__nav-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.recommended__nav-btn {
  color: var(--dukaty-blue);
}

.recommended__nav-btn .icon {
  width: auto;
  height: 18px;
}

.recommended__nav-btn:hover {
  background: var(--dukaty-blue-badge);
  border-radius: 50%;
}

/* ===== Detail — Tablet ===== */
@media (max-width: 1240px) {
  .product {
    grid-template-columns: 1fr 1fr;
    padding: 0;
    justify-content: stretch;
  }

  .description {
    grid-template-columns: 1fr 1fr;
    padding: 0;
    justify-content: stretch;
  }

  .heureka {
    grid-template-columns: 137px 1fr auto;
  }

  .heureka__text {
    width: auto;
  }

  .product__wreath--tr {
    display: none;
  }
  .variants { 
        padding: 30px 25px 0 25px;
  }
}

@media (max-width: 1024px) {
  .description__body {
    padding-bottom: 25px;
  }
  .detail-hero {
    grid-template-columns: 1fr;
    padding: 76px 40px;
    gap: 32px;
    min-height: auto;
  }


  .contact__inner {
    grid-template-columns: 0fr 1fr 1fr 1fr;
  }

  .product {
    grid-template-columns: 1fr;
  }

  .description {
    grid-template-columns: 1fr;
  }

  .rec-card {
    width: calc((var(--cw, 100%) - 15px) / 2);
  }

  .detail-back {
    top: 16px;
    left: 40px;
  }

  .product__wreath--bl {
    display: none;
  }
}

/* ===== Detail — gallery horizontal (tablet 769–1024) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .product__gallery {
    flex-direction: row;
    align-items: flex-start;
  }

  .product__hero,
  .product__thumbs {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ===== Detail — Mobile ===== */
@media (max-width: 768px) {
  .dukaty-detail {
    padding: 0;
    margin-top: 0;
  }

  
  .dukaty-lp .products__tab {
    font-size: 16px;
  }

  .detail-hero__wreath,
  .product__wreath {
    display: none;
  }

  .breadcrumb {
    padding: 6px 8px;
    font-size: 12px;
    gap: 4px;
    margin-top: 0;
  }

  .breadcrumb__home {
    width: 22px;
    height: 22px;
  }

  .breadcrumb__home .icon {
    width: 12px;
    height: 12px;
  }

  .breadcrumb__sep {
    width: 16px;
    height: 16px;
  }

  .detail-hero {
    padding: 27px 0 0 25px;
    gap: 0;
    border-radius: 12px;
    min-height: 220px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    align-items: flex-start;
    width: calc(100% - 14px);
    margin-left: auto;
    margin-right: auto;
  }

  .detail-hero__media img {
    object-position: center center;
  }

  .detail-hero__content {
    max-width: 100%;
    gap: 12px;
    height: 100%;
    padding-bottom: 12px;
  }

  .dukaty-detail .detail-hero__title {
    font-size: 20px;
    line-height: 1.2;
    color: #00223e;
    order: 1;
  }

  .dukaty-detail .detail-hero__lead {
    font-size: 10px;
    color: #00223e;
    order: 2;
    width: 38%;
  }

  .dukaty-detail .detail-hero__cta,
  .detail-back {
    display: none;
  }

  /* Variants */
  .variants {
    margin-top: 24px;
    padding: 0 12px;
  }

  .dukaty-detail .variants__title {
    display: none;
  }

  .variants__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }

  .variants__select {
    display: block;
    position: relative;
  }

  .variants__select--type {
    grid-column: 1 / 2;
  }

  .variants__select--weight {
    grid-column: 2 / 3;
  }

  /* ----- Trigger (collapsed select button) ----- */
  .variants__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 40px;
    padding: 7px 12px;
    border: 1px solid var(--dukaty-blue);
    border-radius: 4px;
    background: #fff;
    color: #000;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
  }

  .variants__trigger::after {
    content: "";
    margin-left: auto;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
    transition: transform .15s;
  }

  .variants__select--open .variants__trigger::after {
    transform: rotate(180deg);
  }

  .variants__trigger .check {
    display: none;
  }

  .variants__thumb {
    display: none;
  }

  .variants__trigger .variants__type-label {
    font-size: 12px;
    font-weight: 800;
  }

  /* ----- Dropdown panel (below trigger) ----- */
  .variants__chooser,
  .variants__weights {
    display: none;
    gap: 0;
  }

  .variants__select--open .variants__chooser,
  .variants__select--open .variants__weights {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    height: auto;
    margin: 0;
    background: #fff;
    border: 0.5px solid var(--dukaty-blue);
    border-radius: 4px;
    overflow: hidden;
  }

  .variants__type-label, .variants__weights {
    font-size: 12px;
  }

  .variants__select--open .variants__chooser::before {
    display: none;
  }

  .variants__select--open .variants__type,
  .variants__select--open .variants__weight {
    display: flex;
    width: 100%;
    height: 35px;
    flex: none;
    padding: 7px 8px;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .variants__select--open .variants__type::before,
  .variants__select--open .variants__type::after {
    display: none;
  }

  .variants__select--open .variants__weight {
    font-size: 10px;
    font-weight: 700;
    justify-content: flex-start;
  }

  .variants__select--open .variants__type+.variants__type,
  .variants__select--open .variants__weight+.variants__weight {
    border-top: 0.5px solid var(--dukaty-blue-mute);
  }

  .variants__select--open .variants__type.tab--active,
  .variants__select--open .variants__weight--active {
    background: var(--dukaty-blue-badge);
  }

  .variants__select--open .check {
    display: none;
  }


  /* product */
  .product {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 12px;
    padding: 0 12px;
    justify-content: stretch;
  }

  .product__thumbs {
    display: none;
  }

  .product__hero {
    aspect-ratio: 312 / 359;
    border: none;
  }

  .dukaty-detail .product__title {
    font-size: 20px;
  }

  .product__badges {
    gap: 8px;
  }

  .product__meta {
    gap: 8px;
    flex-direction: column;
    display: flex;
  }

  .product__meta-row {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 4px;
  }

  .product__price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .dukaty-detail .product__price-note {
    display: none;
  }

  .dukaty-detail .product__price-note--mobile,
  .dukaty-detail .product__price-note.product__price-note--italic {
    display: block;
  }

  .dukaty-detail .product__price {
    font-size: 40px;
    text-align: left;
  }

  .product__buy {
    width: 100%;
  }

  .product__shipping {
    padding: 20px 12px;
    border-radius: 4px;
  }

  .product__shipping-list {
    font-size: 13px;
    list-style: none;
  }

  .product__shipping-list li {
    flex-wrap: wrap;
    gap: 0;
  }

  .product__shipping-list li>span::before {
    display: none;
  }

  .product__shipping-list li>span {
    padding: 0;
  }

  .product__buy-extra {
    flex-direction: column;
    gap: 8px;
    padding: 0;
    align-items: stretch;
    border: none;
  }

  .product__buy-extra .btn {
    width: 100%;
  }

  .product__buy-extra p {
    display: none;
  }

  .product__options {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* description */
  .description {
    grid-template-columns: 1fr;
    padding: 0 12px;
    margin-top: 36px;
    gap: 32px;
    justify-content: stretch;
  }

  .dukaty-detail .description__title {
    font-size: 20px;
  }

  .description__body p {
    font-size: 16px;
  }

  .specs__row {
    padding: 12px 12px;
    font-size: 16px;
  }

  .heureka {
    grid-template-columns: 81px 1fr;
    gap: 18px;
    padding: 12px;
  }

  .heureka__badge {
    width: 81px;
    height: auto;
  }

  .heureka__cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .dukaty-detail .heureka__value {
    font-size: 32px;
  }

  .dukaty-detail .heureka__label {
    font-size: 14px;
    margin-top: 6px;
  }

  /* recommended */
  .recommended {
    margin: 36px 0;
    padding: 24px 12px;
  }

  .rec-card {
    width: calc((var(--cw, 100%) - 12px) / 1.5);
    margin-right: 12px;
  }

  .dukaty-detail .rec-card__title {
    font-size: 14px;
  }

  .dukaty-detail .rec-card__price {
    font-size: 18px;
  }

  .recommended__view-all {
    font-size: 12px;
    display: none;
  }
}

@media (max-width: 560px) {
  .team__member {
    width: calc((var(--cw, 100%) - 12px) / 1.5);
  }

  .team__photo {
    aspect-ratio: 3 / 3.5;
    height: auto;
  }
}
