/* Detail produktu — navazuje na vizuální systém homepage. */
.product-page main {
  display: block;
  color: var(--ink);
  background: #fff;
}

.product-detail {
  position: relative;
  padding: 25px 0 50px;
  overflow: clip;
  background:
    radial-gradient(circle at 95% 3%, rgba(36,184,215,.13), transparent 24%),
    linear-gradient(180deg, #fff9fb 0, #fff 380px);
}
.product-detail::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -140px;
  top: 280px;
  border: 46px solid rgba(247,0,118,.06);
  border-radius: 50%;
}
.breadcrumbs {
  min-height: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #8b7f88;
  font-size: 10.5px;
}
.breadcrumbs a:hover { color: var(--pink); }
.breadcrumbs strong { color: #504650; font-weight: 800; }
.breadcrumbs span { color: #c5bac1; }

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(540px, 1.07fr);
  gap: 44px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 18px;
  min-width: 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
}
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-thumb {
  width: 84px;
  height: 106px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 15px;
  overflow: hidden;
  background: #f7f1f4;
  cursor: pointer;
  transition: border-color .2s, transform .2s, background .2s;
}
.gallery-thumb:hover { transform: translateY(-2px); background: #fff; }
.gallery-thumb.is-active { border-color: var(--pink); background: #fff; box-shadow: 0 8px 22px rgba(247,0,118,.12); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-gallery__stage {
  position: relative;
  height: 650px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(rgba(247,0,118,.15) 1.2px, transparent 1.2px) 0 0 / 19px 19px,
    linear-gradient(145deg, #fff1f7, #fff7d8 56%, #ddf8ff);
  box-shadow: 0 22px 45px rgba(39,20,32,.08);
  cursor: zoom-in;
}
.product-gallery__stage:focus-visible { outline: 4px solid rgba(17,183,215,.65); outline-offset: 4px; }
.product-gallery__open { position: absolute; z-index: 2; inset: 0; display: block; }
.product-gallery__open picture { position: absolute; inset: 0; display: block; }
.product-gallery__open picture img { width: 100%; height: 100%; padding: 20px; object-fit: contain; }
.product-gallery__stage::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 400px;
  height: 400px;
  right: -95px;
  bottom: -110px;
  border: 55px solid rgba(255,255,255,.58);
  border-radius: 50%;
}
.product-gallery__stage > img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -14px;
  width: auto;
  max-width: none;
  height: 615px;
  object-fit: contain;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
  filter: saturate(1.03) drop-shadow(0 18px 16px rgba(35,18,28,.14));
  transition: opacity .18s ease, transform .28s ease;
}
.product-gallery__stage.is-changing > img { opacity: .15; transform: translateX(-50%) scale(.98); }
.product-gallery__badge {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font: 900 9px Montserrat, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-favourite {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24,19,43,.09);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(24,19,43,.08);
  font-size: 25px;
  cursor: pointer;
}
.product-favourite.is-favourite { color: #fff; background: var(--pink); }
.product-gallery__circle { position: absolute; z-index: 0; border-radius: 50%; }
.product-gallery__circle--one { width: 210px; height: 210px; left: 25px; bottom: 45px; background: rgba(255,220,64,.82); }
.product-gallery__circle--two { width: 130px; height: 130px; right: 18px; top: 95px; border: 18px solid rgba(36,184,215,.23); }
.product-gallery__zoom {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #655a63;
  background: rgba(255,255,255,.88);
  transform: translateX(-50%);
  font-size: 8.5px;
  white-space: nowrap;
}

.product-lightbox {
  width: min(94vw, 1120px);
  height: min(92vh, 880px);
  padding: 54px 76px 50px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 90px rgba(20,12,25,.34);
}
.product-lightbox::backdrop { background: rgba(17,11,24,.82); backdrop-filter: blur(5px); }
.product-lightbox img { width: 100%; height: 100%; object-fit: contain; }
.product-lightbox button {
  width: 48px;
  height: 48px;
  border: 1px solid #e7dde3;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 24px rgba(24,19,43,.12);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.product-lightbox__close { top: 14px; right: 14px; }
.product-lightbox__previous { left: 14px; top: 50%; transform: translateY(-50%); }
.product-lightbox__next { right: 14px; top: 50%; transform: translateY(-50%); }
.product-lightbox__counter { margin: 0; position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 14px; font-weight: 800; }

@media (max-width: 620px) {
  .product-lightbox { width: calc(100vw - 20px); height: calc(100vh - 20px); padding: 56px 16px 58px; border-radius: 18px; }
  .product-lightbox__previous { left: 10px; top: auto; bottom: 10px; transform: none; }
  .product-lightbox__next { right: 10px; top: auto; bottom: 10px; transform: none; }
}

.product-config {
  min-width: 0;
  padding: 2px 0 0;
}
.product-config__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.tag { padding: 7px 10px; border-radius: 999px; color: #635961; background: #f5f0f3; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; }
.tag--available { color: #087e5d; background: #ddfaef; }
.tag--available i { width: 6px; height: 6px; margin-right: 4px; display: inline-block; border-radius: 50%; background: #18b987; }
.product-config h1 { max-width: 620px; margin: 0; font: 900 clamp(33px, 3vw, 49px)/1.02 Montserrat, sans-serif; letter-spacing: -.055em; }
.product-meta { margin-top: 14px; display: flex; justify-content: space-between; gap: 18px; color: #81757e; font-size: 10px; }
.product-meta strong { color: var(--ink); }
.product-lead { max-width: 620px; margin: 20px 0 13px; color: #645963; font-size: 14px; line-height: 1.65; }
.included-inline { margin: 0 0 21px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.included-inline li { padding: 6px 9px; border-radius: 7px; color: #766b74; background: #faf6f8; font-size: 9px; }
.included-inline li::before { content: '✓'; margin-right: 5px; color: var(--pink); font-weight: 900; }

.config-section { padding: 20px 0; border-top: 1px solid #ece5e9; }
.config-heading { margin-bottom: 12px; display: flex; justify-content: space-between; align-items: end; gap: 15px; }
.config-heading small { display: block; margin-bottom: 4px; color: var(--pink); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.config-heading h2 { margin: 0; font: 900 18px/1.15 Montserrat, sans-serif; letter-spacing: -.025em; }
.size-guide-link { border: 0; padding: 0 0 3px; color: var(--pink); background: none; font-size: 9px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.choice-row { display: grid; gap: 9px; }
.size-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.duration-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-button {
  min-height: 62px;
  padding: 10px 13px;
  border: 1.5px solid #e5dce2;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.choice-button:hover { transform: translateY(-1px); border-color: #f690bd; }
.choice-button.is-selected { border-color: var(--pink); background: #fff1f7; box-shadow: inset 0 0 0 1px var(--pink); }
.choice-button strong { font: 900 15px Montserrat, sans-serif; }
.choice-button small { margin-top: 4px; color: #766b74; font-size: 9px; }
.fit-note { margin: 10px 0 0; color: #6f646c; font-size: 9px; }
.fit-note span { width: 17px; height: 17px; margin-right: 5px; border-radius: 50%; display: inline-grid; place-items: center; color: #fff; background: var(--cyan); font-weight: 900; }

.calendar-legend { display: flex; gap: 11px; color: #877b83; font-size: 14px; }
.calendar-legend span { display: flex; align-items: center; gap: 4px; }
.calendar-legend i { width: 8px; height: 8px; border-radius: 50%; }
.calendar-legend .is-date-option { background: var(--cyan); }
.calendar-legend .is-selected-date { background: var(--pink); }
.calendar-legend .is-free { background: #21c28c; }
.calendar-legend .is-busy { background: #d8ced4; }
.calendar-legend .is-closed { background: #f0bf35; }
.availability-calendar { padding: 15px; border: 1px solid #e8dfe4; border-radius: 17px; background: #fff; box-shadow: 0 12px 28px rgba(39,20,32,.05); }
.calendar-head { margin-bottom: 12px; display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; text-align: center; }
.calendar-head strong { font: 900 14px Montserrat, sans-serif; text-transform: uppercase; letter-spacing: .05em; }
.calendar-head button { width: 32px; height: 32px; border: 1px solid #e8dfe4; border-radius: 9px; color: var(--ink); background: #fff; cursor: pointer; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.calendar-weekdays { margin-bottom: 5px; color: #756a72; font-size: 14px; font-weight: 800; text-align: center; text-transform: uppercase; }
.calendar-day {
  position: relative;
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: #eefaf4;
  box-shadow: inset 0 0 0 1px rgba(33,194,140,.16);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.calendar-day::after { content: ''; position: absolute; width: 4px; height: 4px; left: 50%; bottom: 5px; border-radius: 50%; background: #21c28c; transform: translateX(-50%); }
.calendar-day:hover:not(:disabled) { color: var(--pink); box-shadow: inset 0 0 0 1.5px var(--pink); }
.calendar-day.is-other { color: #c7bec4; background: transparent; box-shadow: none; }
.calendar-day.is-other::after { display: none; }
.calendar-day.is-busy { color: #aaa0a6; background: #eee9ec; box-shadow: none; text-decoration: line-through; cursor: not-allowed; }
.calendar-day.is-busy::after { background: #c8bec4; }
.calendar-day.is-closed { color: #8a6b18; background: #fff6d8; box-shadow: inset 0 0 0 1px rgba(220,165,18,.2); cursor: not-allowed; }
.calendar-day.is-closed::after { background: #e3ad18; }
.calendar-day.is-range { color: #9a0050; background: #ffe0ef; border-radius: 0; box-shadow: none; }
.calendar-day.is-range::after { background: var(--pink); }
.calendar-day.is-closed.is-range { color: #9a0050; background: #ffe0ef; box-shadow: none; }
.calendar-day.is-start, .calendar-day.is-end { color: #fff; background: var(--pink); border-radius: 9px; box-shadow: 0 6px 15px rgba(247,0,118,.22); }
.calendar-day.is-start::after, .calendar-day.is-end::after { background: #fff; }
.calendar-help { margin: 8px 0 0; color: #786d75; font-size: 14px; line-height: 1.45; }

.delivery-choices { display: grid; grid-template-columns: 1fr; gap: 9px; }
.delivery-choice-button {
  min-height: 72px;
  padding: 11px;
  border: 1.5px solid #e5dce2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.delivery-choice-button.is-selected { border-color: var(--cyan); background: #ebfbff; box-shadow: inset 0 0 0 1px var(--cyan); }
.delivery-choice-button__icon, .delivery-choice-button__logo { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 11px; display: grid; place-items: center; color: #fff; background: var(--pink); font-size: 22px; font-weight: 900; }
.delivery-choice-button__logo { padding: 7px; background: #fff; border: 1px solid #e8dfe4; }
.delivery-choice-button__logo img { width: 100%; height: 100%; object-fit: contain; }
.delivery-choice-button strong, .delivery-choice-button small { display: block; }
.delivery-choice-button strong { font: 900 11px Montserrat, sans-serif; }
.delivery-choice-button small { margin-top: 5px; color: #7d717a; font-size: 8px; }
.delivery-choice-button > span:nth-child(2) { min-width: 0; flex: 1 1 auto; }
.delivery-choice-button__price { margin-left: auto; color: var(--ink); font: 900 14px/1 Montserrat, sans-serif; white-space: nowrap; }
.delivery-choice-button.is-selected .delivery-choice-button__price { color: var(--pink); }

.reservation-summary { padding: 20px; border: 2px solid #ffb8d7; border-radius: 20px; background: linear-gradient(145deg, #fff7fb, #fff); box-shadow: 0 18px 38px rgba(247,0,118,.08); }
.reservation-summary__dates { padding: 13px; border-radius: 13px; display: grid; grid-template-columns: 1fr 24px 1fr; align-items: center; background: #fff; text-align: center; }
.reservation-summary__dates span { display: flex; flex-direction: column; gap: 3px; }
.reservation-summary__dates small { color: #8b7e87; font-size: 7.5px; text-transform: uppercase; letter-spacing: .08em; }
.reservation-summary__dates strong { font: 900 12px Montserrat, sans-serif; }
.reservation-summary__dates > b { color: var(--pink); }
.reservation-summary__line { padding: 10px 2px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 15px; color: #6e626a; font-size: 10px; }
.reservation-summary__line strong { color: var(--ink); }
.reservation-summary__line--deposit { padding-bottom: 11px; flex-wrap: wrap; border-bottom: 1px solid #eadfe5; }
.reservation-summary__line--deposit small { flex-basis: 100%; color: #948891; font-size: 7.5px; }
.reservation-summary__total { padding: 14px 0; display: flex; justify-content: space-between; align-items: end; }
.reservation-summary__total span { font-weight: 800; }
.reservation-summary__total strong { font: 900 25px Montserrat, sans-serif; }
.reserve-button { width: 100%; min-height: 57px; padding: 0 20px; border: 0; border-radius: 14px; display: flex; justify-content: space-between; align-items: center; color: #fff; background: var(--pink); box-shadow: 0 12px 25px rgba(247,0,118,.25); font: 900 13px Montserrat, sans-serif; cursor: pointer; }
.reserve-button:hover { background: #db006b; transform: translateY(-1px); }
.reserve-button:disabled,
.mobile-reserve-bar button:disabled { color: #fff; background: #bdb4ba; box-shadow: none; cursor: not-allowed; transform: none; opacity: .82; }
.reservation-summary__note { margin: 10px 0 0; color: #786d75; font-size: 8px; line-height: 1.45; text-align: center; }

.product-benefits { padding: 18px 0 38px; background: #fff; }
.product-benefits__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.product-benefit { min-height: 112px; padding: 17px; border-radius: 18px; display: flex; align-items: center; gap: 13px; overflow: hidden; }
.product-benefit > span { width: 43px; height: 43px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; color: var(--ink); background: rgba(255,255,255,.62); font-size: 19px; font-weight: 900; }
.product-benefit strong { display: block; font: 900 11px/1.25 Montserrat, sans-serif; }
.product-benefit p { margin: 5px 0 0; color: #62565f; font-size: 8.5px; line-height: 1.4; }
.product-benefit--pink { background: #ffdceb; }
.product-benefit--yellow { background: #ffefa8; }
.product-benefit--blue { background: #d6f5fb; }
.product-benefit--violet { background: #e7deff; }

.product-info { padding: 57px 0; background: #faf7f9; }
.product-info__layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.product-info__copy h2, .accessories h2, .similar-products h2 { max-width: 730px; margin: 0; font: 900 clamp(29px, 3.2vw, 44px)/1.06 Montserrat, sans-serif; letter-spacing: -.05em; }
.product-info__copy > p:not(.eyebrow) { max-width: 620px; margin: 20px 0; color: #695e66; font-size: 13px; line-height: 1.7; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.included-list span { padding: 12px; border-radius: 11px; color: #51464e; background: #fff; font-size: 10px; }
.included-list i { width: 21px; height: 21px; margin-right: 7px; border-radius: 50%; display: inline-grid; place-items: center; color: #fff; background: var(--pink); font-style: normal; font-weight: 900; }
.not-included { margin-top: 15px; padding: 13px 15px; border-left: 4px solid var(--yellow); color: #6e626a; background: #fffdf0; font-size: 9.5px; }
.size-card { border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 20px 45px rgba(31,17,27,.08); }
.size-card__head { padding: 21px; color: #fff; background: linear-gradient(135deg, var(--pink), #ff63a9); }
.size-card__head span { display: block; margin-bottom: 6px; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.size-card__head strong { font: 900 18px Montserrat, sans-serif; }
.size-table { padding: 10px 20px 0; }
.size-table > div { min-height: 50px; display: grid; grid-template-columns: .7fr 1.1fr 1fr 1fr; align-items: center; gap: 8px; border-bottom: 1px solid #eee7eb; color: #6f646c; font-size: 9px; }
.size-table > div:first-child { min-height: 42px; color: #9a8e96; font-size: 7.5px; text-transform: uppercase; letter-spacing: .06em; }
.size-table strong { color: var(--pink); font: 900 15px Montserrat, sans-serif; }
.size-card > p { margin: 0; padding: 16px 20px 20px; color: #8a7e86; font-size: 8.5px; line-height: 1.5; }

.accessories { padding: 58px 0; background: #fff; }
.accessories .section-heading, .similar-products .section-heading { align-items: end; }
.accessory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.accessory-card { min-height: 285px; border-radius: 22px; overflow: hidden; display: grid; grid-template-columns: .82fr 1.18fr; }
.accessory-card--pink { background: #ffe0ed; }
.accessory-card--yellow { background: #ffefaa; }
.accessory-card--blue { background: #d8f6fb; }
.accessory-card__image { position: relative; overflow: hidden; }
.accessory-card__image::after { content: ''; position: absolute; width: 120px; height: 120px; left: -55px; bottom: -45px; border: 20px solid rgba(255,255,255,.5); border-radius: 50%; }
.accessory-card__image img { position: absolute; left: 50%; bottom: -10px; width: 120%; height: 95%; object-fit: contain; transform: translateX(-50%); mix-blend-mode: multiply; filter: drop-shadow(0 12px 10px rgba(28,18,24,.12)); }
.accessory-card > div:last-child { padding: 29px 21px 24px 7px; display: flex; flex-direction: column; align-items: flex-start; }
.accessory-card span { color: var(--pink); font-size: 7.5px; font-weight: 900; letter-spacing: .11em; }
.accessory-card h3 { margin: 10px 0 8px; font: 900 17px/1.1 Montserrat, sans-serif; }
.accessory-card p { margin: 0; color: #665a62; font-size: 9px; line-height: 1.5; }
.accessory-card a { margin-top: auto; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 9px; font-weight: 900; }

.product-addons__intro { max-width: 720px; margin: 12px 0 0; color: #6b6068; font-size: 14px; line-height: 1.6; }
.addon-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.addon-category-card {
  position: relative;
  isolation: isolate;
  min-height: 156px;
  padding: 24px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--ink);
}
.addon-category-card::before { content: ''; position: absolute; z-index: -1; width: 150px; height: 150px; right: -45px; top: -68px; border: 22px solid rgba(255,255,255,.5); border-radius: 50%; }
.addon-category-card--pink { background: #ffe0ed; }
.addon-category-card--yellow { background: #ffefaa; }
.addon-category-card--blue { background: #d8f6fb; }
.addon-category-card__number { position: absolute; top: 20px; right: 22px; color: rgba(24,19,43,.48); font: 900 11px Montserrat, sans-serif; }
.addon-category-card strong { max-width: 88%; font: 900 19px/1.25 Montserrat, sans-serif; }
.addon-category-card small { margin-top: 10px; color: var(--pink); font-size: 13px; font-weight: 850; }
.addon-category-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(31,17,27,.09); }

.similar-products { padding: 58px 0 65px; background: #faf7f9; }
.similar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.similar-card { min-width: 0; padding: 10px 10px 15px; border-radius: 19px; background: #fff; box-shadow: 0 12px 30px rgba(31,17,27,.05); }
.similar-card__image { position: relative; height: 270px; border-radius: 14px; overflow: hidden; }
.similar-card__image--pink { background: #ffe2ed; }
.similar-card__image--yellow { background: #fff0b1; }
.similar-card__image--blue { background: #d9f5fb; }
.similar-card__image--violet { background: #e6ddff; }
.similar-card__image > span { position: absolute; z-index: 3; top: 10px; left: 10px; padding: 6px 8px; border-radius: 999px; color: #fff; background: var(--pink); font-size: 7px; font-weight: 900; }
.similar-card__image img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; mix-blend-mode: multiply; }
.similar-card h3 { margin: 14px 4px 3px; font: 900 14px Montserrat, sans-serif; }
.similar-card p { margin: 0 4px 12px; color: #897d85; font-size: 8.5px; }
.similar-card > div:last-child { padding: 11px 4px 0; border-top: 1px solid #eee7eb; display: flex; justify-content: space-between; align-items: center; }
.similar-card > div:last-child strong { font: 900 16px Montserrat, sans-serif; }
.similar-card > div:last-child a { color: var(--pink); font-size: 8.5px; font-weight: 900; }

.mobile-reserve-bar { display: none; }

@media (max-width: 1180px) {
  .product-detail__layout { grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr); gap: 28px; }
  .product-gallery { grid-template-columns: 70px minmax(0,1fr); }
  .gallery-thumb { width: 70px; height: 90px; }
  .product-gallery__stage { height: 590px; }
  .product-gallery__stage > img { height: 560px; }
  .accessory-card { grid-template-columns: .75fr 1.25fr; }
}

@media (max-width: 1140px) {
  .product-detail__layout { grid-template-columns: 1fr; }
  .product-gallery { position: relative; top: auto; width: 100%; max-width: 700px; margin-inline: auto; grid-template-columns: 78px minmax(0,1fr); justify-self: center; }
  .gallery-thumb { width: 78px; height: 98px; }
  .product-gallery__stage { min-width: 0; height: 610px; }
  .product-gallery__stage > img { height: 580px; }
  .product-config { max-width: 700px; margin: 5px auto 0; }
  .product-benefits__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-info__layout { gap: 28px; }
  .accessory-grid { grid-template-columns: 1fr; }
  .accessory-card { min-height: 230px; grid-template-columns: 210px 1fr; }
  .accessory-card__image img { width: 100%; }
  .similar-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .product-page { padding-bottom: 76px; }
  .product-detail { padding: 14px 0 30px; }
  .breadcrumbs { margin-bottom: 12px; white-space: nowrap; overflow-x: auto; flex-wrap: nowrap; }
  .product-detail__layout { gap: 24px; }
  .product-gallery { display: flex; flex-direction: column-reverse; }
  .product-gallery__thumbs { flex-direction: row; }
  .gallery-thumb { width: 68px; height: 79px; }
  .product-gallery__stage { height: 455px; border-radius: 22px; }
  .product-gallery__stage > img { height: 430px; }
  .product-gallery__zoom { display: none; }
  .product-config h1 { font-size: 34px; }
  .product-meta { flex-direction: column; gap: 6px; }
  .product-lead { font-size: 12.5px; }
  .config-heading { align-items: start; }
  .calendar-legend { flex-direction: column; gap: 3px; }
  .calendar-day { min-height: 35px; }
  .delivery-choices { grid-template-columns: 1fr; }
  .reservation-summary { padding: 15px; }
  .product-benefits { padding-top: 8px; }
  .product-benefits__grid { display: flex; margin-inline: -14px; padding: 0 14px 10px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .product-benefit { flex: 0 0 76vw; scroll-snap-align: start; }
  .product-info { padding: 40px 0; }
  .product-info__layout { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .size-table > div { grid-template-columns: .7fr 1.1fr 1fr; }
  .size-table > div > :last-child { display: none; }
  .accessories, .similar-products { padding: 42px 0; }
  .accessories .section-heading, .similar-products .section-heading { align-items: start; }
  .accessory-card { min-height: 215px; grid-template-columns: 42% 58%; }
  .accessory-card > div:last-child { padding: 24px 17px 20px 5px; }
  .accessory-card h3 { font-size: 15px; }
  .similar-grid { display: flex; margin-inline: -14px; padding: 0 14px 13px; gap: 11px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .similar-card { flex: 0 0 72vw; scroll-snap-align: start; }
  .similar-card__image { height: 250px; }
  .mobile-reserve-bar {
    position: fixed;
    z-index: 120;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 62px;
    padding: 8px 8px 8px 15px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background: rgba(24,19,43,.94);
    box-shadow: 0 16px 38px rgba(24,19,43,.32);
    backdrop-filter: blur(12px);
  }
  .mobile-reserve-bar div { display: flex; flex-direction: column; }
  .mobile-reserve-bar small { color: rgba(255,255,255,.7); font-size: 8px; }
  .mobile-reserve-bar strong { font: 900 16px Montserrat, sans-serif; }
  .mobile-reserve-bar button { min-height: 45px; padding: 0 15px; border: 0; border-radius: 12px; color: #fff; background: var(--pink); font-size: 10px; font-weight: 900; }
}

/* V3: pět cenových délek v jedné přehledné řadě také na velkém tabletu. */
.duration-choices {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.duration-choices .choice-button {
  min-width: 0;
  min-height: 112px;
  padding: 12px 7px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.duration-choices .choice-button strong { width: 100%; font-size: 15px; line-height: 1.2; }
.duration-choice__price {
  width: 100%;
  margin-top: 8px;
  color: var(--ink);
  font: 900 17px/1.15 Montserrat, sans-serif;
  white-space: nowrap;
}
.duration-choices .choice-button small {
  width: 100%;
  margin-top: 7px;
  color: #665b63;
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
}
.duration-choice__status {
  min-height: 16px;
  margin-top: 5px;
  color: #81747d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.duration-choices .choice-button.is-available .duration-choice__status { color: #087e5d; }
.duration-choices .choice-button.is-unavailable .duration-choice__status { color: #9a123d; }

.config-section--delivery .config-heading { position: relative; align-items: center; }
.ppl-delivery-info { position: relative; margin-left: auto; }
.ppl-delivery-info__button {
  width: 38px;
  height: 38px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 8px 18px rgba(247,0,118,.2);
  font: 900 20px/1 Montserrat, sans-serif;
  cursor: pointer;
  list-style: none;
}
.ppl-delivery-info__button::-webkit-details-marker { display: none; }
.ppl-delivery-info__button:focus-visible { outline: 3px solid rgba(0,184,221,.35); outline-offset: 3px; }
.ppl-delivery-info__popup {
  position: absolute;
  z-index: 80;
  width: min(430px, calc(100vw - 40px));
  right: 0;
  top: calc(100% + 10px);
  padding: 18px;
  border: 1px solid #f6a7cc;
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 55px rgba(35,18,29,.2);
  font-size: 14px;
  line-height: 1.55;
}
.ppl-delivery-info__popup::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  right: 13px;
  top: -7px;
  border-left: 1px solid #f6a7cc;
  border-top: 1px solid #f6a7cc;
  background: #fff;
  transform: rotate(45deg);
}
.ppl-delivery-info__popup p { margin: 0 0 10px; }
.ppl-delivery-info__popup p:last-child { margin-bottom: 0; }
.ppl-delivery-info:not([open]) .ppl-delivery-info__popup { display: none; }
@media (hover: hover) {
  .ppl-delivery-info:hover .ppl-delivery-info__popup { display: block; }
}

.ppl-lead-time-warning {
  margin-top: 14px;
  padding: 18px 18px 18px 22px;
  border: 2px solid #e49b00;
  border-left-width: 7px;
  border-radius: 16px;
  color: #5c3e00;
  background: #fff4c8;
  box-shadow: 0 12px 28px rgba(164,106,0,.1);
}
.ppl-lead-time-warning[hidden] { display: none; }
.ppl-lead-time-warning strong,
.ppl-lead-time-warning span { display: block; }
.ppl-lead-time-warning strong { margin-bottom: 8px; color: #8a2800; font: 900 17px/1.3 Montserrat, sans-serif; }
.ppl-lead-time-warning span { margin-top: 4px; font-size: 14px; line-height: 1.45; }
.ppl-lead-time-warning span:last-child { font-weight: 850; }

@media (max-width: 760px) {
  .duration-choices {
    grid-template-columns: repeat(5, minmax(112px, 1fr));
    padding: 3px 2px 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .duration-choices .choice-button { scroll-snap-align: start; }
  .ppl-delivery-info__popup { right: -2px; }
}

@media (max-width: 420px) {
  .product-gallery__stage { height: 405px; }
  .product-gallery__stage > img { height: 385px; }
  .duration-choices { gap: 6px; }
  .choice-button { padding-inline: 9px; }
  .reservation-summary__dates strong { font-size: 10.5px; }
  .accessory-card { grid-template-columns: 40% 60%; }
}

/* ===== V2: užší obsah, čitelnější typografie a doplňky přímo u velikosti ===== */
.product-detail > .shell,
.product-benefits > .shell,
.product-info > .shell,
.similar-products > .shell {
  width: min(calc(100% - 64px), 1280px);
}
.product-detail { padding-top: 28px; }
.breadcrumbs { margin-bottom: 24px; font-size: 12px; }
.product-detail__layout {
  grid-template-columns: minmax(0, 520px) minmax(0, 640px);
  justify-content: space-between;
  gap: 40px;
}
.product-gallery__stage { height: 625px; }
.product-gallery__stage > img { height: 590px; }
.product-config { max-width: 640px; }
.product-config__tags { gap: 8px; margin-bottom: 16px; }
.tag { padding: 8px 11px; font-size: 11px; }
.product-config h1 { font-size: clamp(38px, 3.15vw, 50px); }
.product-meta { margin-top: 16px; font-size: 12px; }
.product-lead { margin: 22px 0 16px; font-size: 16px; line-height: 1.65; }
.included-inline { margin-bottom: 25px; gap: 8px; }
.included-inline li { padding: 8px 11px; font-size: 11px; }

.config-section { padding: 26px 0; }
.config-heading { margin-bottom: 16px; }
.config-heading small { margin-bottom: 6px; font-size: 10px; }
.config-heading h2 { font-size: 22px; line-height: 1.2; }
.size-guide-link { font-size: 11px; line-height: 1.4; }
.choice-button { min-height: 76px; padding: 13px 16px; border-radius: 15px; }
.choice-button strong { font-size: 17px; }
.choice-button small { margin-top: 6px; font-size: 12px; }
.fit-note { margin-top: 13px; font-size: 12px; line-height: 1.5; }
.fit-note span { width: 21px; height: 21px; }

.config-section--addons { padding-top: 24px; }
.addon-choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.addon-choice {
  min-width: 0;
  min-height: 174px;
  padding: 10px;
  border: 1px solid #eadfe5;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #fff8fb);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.addon-choice:hover { transform: translateY(-2px); border-color: #f58cbd; box-shadow: 0 12px 24px rgba(247,0,118,.09); }
.addon-choice__image { height: 106px; padding: 4px; border-radius: 11px; overflow: hidden; display: grid; place-items: center; background: #f8edf3; }
.addon-choice__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.addon-choice__image--makeup { background: #fff4c9; }
.addon-choice__image--makeup img { mix-blend-mode: normal; }
.addon-choice > span:last-child { display: flex; flex-direction: column; gap: 5px; }
.addon-choice strong { font: 900 12px/1.25 Montserrat, sans-serif; }
.addon-choice small { color: var(--pink); font-size: 10px; line-height: 1.35; }

.duration-choices { grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); }
.duration-choices .choice-button { min-height: 82px; }
.calendar-legend { gap: 14px; font-size: 14px; }
.calendar-legend i { width: 10px; height: 10px; }
.availability-calendar { padding: 20px; border-radius: 19px; }
.calendar-head { margin-bottom: 16px; grid-template-columns: 40px 1fr 40px; }
.calendar-head strong { font-size: 14px; }
.calendar-head button { width: 38px; height: 38px; font-size: 15px; }
.calendar-weekdays, .calendar-days { gap: 7px; }
.calendar-weekdays { margin-bottom: 7px; font-size: 14px; }
.calendar-day { min-height: 44px; border-radius: 11px; font-size: 14px; }
.calendar-day::after { width: 5px; height: 5px; bottom: 6px; }
.calendar-help { margin-top: 11px; font-size: 14px; line-height: 1.45; }
.delivery-choice-button { min-height: 88px; padding: 14px; gap: 13px; }
.delivery-choice-button__icon, .delivery-choice-button__logo { width: 49px; height: 49px; }
.delivery-choice-button strong { font-size: 14px; }
.delivery-choice-button small { margin-top: 6px; font-size: 11px; }
.delivery-choice-button__price { font-size: 15px; }

.reservation-summary { padding: 24px; }
.reservation-summary__dates { padding: 16px; }
.reservation-summary__dates small { font-size: 10px; }
.reservation-summary__dates strong { font-size: 14px; }
.reservation-summary__line { padding-top: 13px; font-size: 13px; }
.reservation-summary__line--deposit small { font-size: 10px; line-height: 1.45; }
.reservation-summary__total { padding: 18px 0; font-size: 15px; }
.reservation-summary__total strong { font-size: 28px; }
.reserve-button { min-height: 61px; font-size: 15px; }
.reservation-summary__note { margin-top: 12px; font-size: 10.5px; line-height: 1.5; }

.product-benefits { padding: 24px 0 46px; }
.product-benefits__grid { gap: 14px; }
.product-benefit {
  position: relative;
  min-height: 178px;
  padding: 22px;
  border-radius: 22px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 15px;
  isolation: isolate;
}
.product-benefit::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -50px;
  top: -62px;
  border: 21px solid rgba(255,255,255,.42);
  border-radius: 50%;
}
.product-benefit > .product-benefit__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  font-size: 22px;
  font-weight: 900;
}
.product-benefit > .product-benefit__number {
  position: absolute;
  top: 17px;
  right: 18px;
  width: auto;
  height: auto;
  color: rgba(24,19,43,.46);
  background: transparent;
  font: 900 11px Montserrat, sans-serif;
}
.product-benefit strong { font-size: 15px; line-height: 1.25; }
.product-benefit p { margin-top: 7px; font-size: 12px; line-height: 1.5; }

.product-info { padding: 66px 0; }
.product-info__layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 32px;
  align-items: start;
}
.product-info__copy { grid-column: 1 / -1; max-width: 920px; }
.product-info__copy h2, .similar-products h2 { font-size: clamp(34px, 3.25vw, 48px); }
.product-info__copy > p:not(.eyebrow) { max-width: 850px; margin: 24px 0 0; font-size: 16px; line-height: 1.75; }
.package-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.package-column { min-width: 0; padding: 24px; border-radius: 22px; background: #fff; box-shadow: 0 18px 38px rgba(31,17,27,.06); }
.package-column__label { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.package-column--included .package-column__label { color: #087e5d; background: #ddfaef; }
.package-column--excluded .package-column__label { color: #9a0050; background: #ffe0ef; }
.package-column h3 { margin: 14px 0 17px; font: 900 17px/1.3 Montserrat, sans-serif; }
.package-column ul { margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.package-column li { min-height: 54px; padding: 10px 11px; border: 1px solid #eee6ea; border-radius: 12px; display: flex; align-items: center; gap: 10px; }
.package-column li > i { width: 29px; height: 29px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--pink); font-style: normal; font-size: 12px; font-weight: 900; }
.package-column--included li > i { background: #18b987; }
.package-column li span, .package-column li a { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.package-column li strong { font: 900 12px/1.25 Montserrat, sans-serif; }
.package-column li small { color: #857982; font-size: 10px; line-height: 1.35; }
.package-column--excluded li a:hover strong { color: var(--pink); }

.size-card { align-self: stretch; }
.size-card__head { padding: 24px; }
.size-card__head span { font-size: 10px; }
.size-card__head strong { font-size: 21px; }
.size-table { padding: 12px 22px 0; }
.size-table > div { min-height: 58px; font-size: 12px; }
.size-table > div:first-child { font-size: 9px; }
.size-table strong { font-size: 17px; }
.size-card > p { padding: 18px 22px 22px; font-size: 11px; line-height: 1.55; }

.similar-card h3 { font-size: 16px; }
.similar-card p { font-size: 11px; }
.similar-card > div:last-child strong { font-size: 18px; }
.similar-card > div:last-child a { font-size: 11px; }

@media (max-width: 1180px) {
  .product-detail__layout { grid-template-columns: minmax(0, 455px) minmax(0, 580px); gap: 30px; }
  .product-gallery__stage { height: 575px; }
  .product-gallery__stage > img { height: 545px; }
  .product-config { max-width: 580px; }
  .addon-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addon-choice strong { font-size: 12px; }
  .addon-choice small { font-size: 9px; }
}

@media (max-width: 1140px) {
  .product-detail > .shell,
  .product-info > .shell { width: min(calc(100% - 48px), 760px); }
  .product-detail__layout { grid-template-columns: 1fr; }
  .product-config {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  .product-info__layout { grid-template-columns: 1fr; }
  .product-info__copy, .package-compare, .size-card { grid-column: 1; }
  .product-benefits__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .product-detail > .shell,
  .product-benefits > .shell,
  .product-info > .shell,
  .similar-products > .shell { width: min(calc(100% - 28px), 100%); }
  .product-config h1 { font-size: 36px; }
  .product-lead { font-size: 15px; }
  .config-section { padding: 23px 0; }
  .config-heading h2 { font-size: 20px; }
  .addon-choice-grid { grid-template-columns: 1fr; }
  .addon-choice { min-height: 110px; flex-direction: row; align-items: center; }
  .addon-choice__image { width: 102px; height: 92px; flex: 0 0 auto; }
  .addon-choice strong { font-size: 13px; }
  .addon-choice small { font-size: 10.5px; }
  .addon-category-grid { grid-template-columns: 1fr; }
  .addon-category-card { min-height: 132px; }
  .duration-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calendar-day { min-height: 42px; font-size: 14px; }
  .calendar-weekdays { font-size: 14px; }
  .product-benefit { min-height: 170px; }
  .product-benefit strong { font-size: 16px; }
  .product-benefit p { font-size: 12.5px; }
  .product-info__copy > p:not(.eyebrow) { font-size: 15px; }
  .package-compare { grid-template-columns: 1fr; }
  .package-column { padding: 21px; }
  .package-column h3 { font-size: 17px; }
  .package-column li strong { font-size: 13px; }
  .package-column li small { font-size: 11px; }
}

/* ===== V3: variabilní velikosti, čitelnější konfigurace a modální průvodce ===== */
.product-detail > .shell,
.product-benefits > .shell,
.product-info > .shell,
.similar-products > .shell {
  width: min(calc(100% - 64px), 1180px);
}

.product-detail__layout {
  grid-template-columns: minmax(0, 480px) minmax(0, 620px);
  gap: 36px;
}

.product-config { max-width: 620px; }
.breadcrumbs { font-size: 13px; }
.tag { font-size: 12px; }
.product-meta { font-size: 13px; }
.product-gallery__zoom { font-size: 12px; }
.product-lead { font-size: 17px; }
.config-heading small { font-size: 11px; }
.config-heading h2 { font-size: 23px; }
.size-guide-link { font-size: 12px; }
.fit-note { font-size: 12.5px; }
.calendar-help { font-size: 14px; }

.size-choices {
  grid-template-columns: repeat(auto-fit, minmax(126px, 168px));
  justify-content: start;
}

.size-choices .choice-button { min-width: 0; align-items: center; text-align: center; }
.size-choices.has-groups { grid-template-columns: 1fr; }
.size-choice-group { display: grid; gap: 8px; }
.size-choice-group > span { color: #6d6069; font-size: 12px; font-weight: 850; }
.size-choice-group > div { display: grid; grid-template-columns: repeat(auto-fill, minmax(126px, 1fr)); gap: 9px; }
.choice-button strong { font-size: 18px; }
.choice-button small { font-size: 12.5px; }
.choice-button:disabled {
  border-color: #ece6ea;
  color: #9e939a;
  background: #f6f2f4;
  box-shadow: none;
  cursor: not-allowed;
}
.choice-button:disabled small { color: #aaa0a6; }

.addon-choice strong { font-size: 13px; }
.addon-choice small { font-size: 11.5px; }

.weekend-tariff-note {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 12px;
  color: #6c4f00;
  background: #fff5c9;
  font-size: 12.5px;
  line-height: 1.5;
}
.weekend-tariff-note strong { color: #513b00; font-weight: 900; }

.delivery-choice-button__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-choice-button__logo img { width: 38px; height: auto; }
.delivery-choice-button strong { font-size: 15px; }
.delivery-choice-button small { font-size: 12px; }
.delivery-choice-button__price { font-size: 16px; }

.round-trip-info {
  position: relative;
  margin: -4px 0 14px;
  padding: 13px 48px 13px 15px;
  border-radius: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  color: var(--ink);
  background: #fff0f7;
  font-size: 14px;
  line-height: 1.45;
  transition: background .2s, transform .2s;
}
.round-trip-info strong { color: var(--pink); }
.round-trip-info b {
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--pink);
  font-size: 20px;
  transform: translateY(-50%);
}
.round-trip-info:hover { background: #ffe2ef; transform: translateY(-1px); }

.reservation-summary__dates small { font-size: 11px; }
.reservation-summary__dates strong { font-size: 15px; }
.reservation-summary__line { font-size: 14px; }
.reservation-summary__line--deposit small { font-size: 11.5px; }
.reservation-summary__total { font-size: 16px; }
.reservation-summary__note { font-size: 12px; }

.product-benefits { padding: 20px 0 36px; }
.product-benefits__grid { gap: 12px; }
.product-benefit {
  min-height: 126px;
  padding: 20px;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.product-benefit > div { width: 100%; }
.product-benefit strong { font-size: 16px; }
.product-benefit p { font-size: 13px; line-height: 1.5; }

.product-info { padding: 56px 0; }
.product-info__layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: start;
  gap: 28px;
}
.product-info__copy { grid-column: 1; max-width: 920px; }
.product-info__copy > p:not(.eyebrow) { font-size: 17px; }
.package-compare {
  grid-column: 1;
  width: 100%;
  max-width: 920px;
}
.package-column h3 { font-size: 18px; }
.package-column li strong { font-size: 13px; }
.package-column li small { font-size: 11.5px; }

/* Approved Step 1, with actual variant data and a factual Smiffys guide. */
.product-page .config-section--size .size-choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 148px), 1fr)); gap: 10px; }
.product-page .config-section--size .size-choices.has-groups { grid-template-columns: 1fr; }
.product-page .config-section--size .size-choice-group > div { grid-template-columns: repeat(auto-fill, minmax(min(100%, 148px), 1fr)); }
.product-page .config-section--size .size-choices .choice-button { min-width: 0; width: 100%; min-height: 76px; padding: 12px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; text-align: center; border: 2px solid #e5d9e1; border-radius: 14px; background: #fff; }
.product-page .config-section--size .size-choices .choice-button.is-selected { border-color: var(--pink); background: #fff1f7; box-shadow: none; }
.product-page .config-section--size .size-choices .choice-button strong { font: 800 16px/1.4 Montserrat, sans-serif; white-space: normal; overflow-wrap: normal; word-break: normal; }
.product-page .config-section--size .size-choices .choice-button small { color: #746771; font-size: 12.5px !important; line-height: 1.45; white-space: normal; }
.product-page .config-section--size .size-guide-link { min-height: 44px; flex: 0 0 auto; font-size: 12px !important; }
.product-page .size-fit-help { display: flex; align-items: flex-start; gap: 7px; margin: 12px 0 0; color: #746771; font-size: 12.5px !important; line-height: 1.5; }
.product-page .size-fit-help i { flex: 0 0 21px; height: 21px; border-radius: 50%; color: #fff; background: var(--blue, #0fb3d0); text-align: center; font: 900 16px/21px Manrope, sans-serif; }
.size-guide-dialog:not([open]) { display: none; }
.size-guide-dialog { box-sizing: border-box; width: min(880px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 40px); margin: auto; padding: 30px; border: 0; border-radius: 26px; overflow: auto; overscroll-behavior: contain; color: var(--ink); background: #fff; box-shadow: 0 30px 80px #18132b47; }
.size-guide-dialog::backdrop { background: #18132b9e; backdrop-filter: blur(8px); }
.size-guide-dialog .size-dialog__heading { position: sticky; top: -30px; z-index: 2; padding-block: 7px; background: #fff; }
.size-guide-dialog .size-dialog__close { font-size: 26px !important; line-height: 1; }
.size-guide-dialog { scroll-padding-top: 130px; }
.size-guide-dialog [hidden] { display: none !important; }
.size-guide-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.size-guide-tabs button { min-height: 44px; padding: 8px; border: 1px solid #e5d9e1; border-radius: 12px; background: #fff; color: var(--ink); font: 800 14px/1.4 Manrope, sans-serif; cursor: pointer; }
.size-guide-tabs button[aria-selected="true"] { border-color: var(--pink); background: #fff1f7; color: #ce0063; }
.size-guide-dialog :is(button, a, input):focus-visible { outline: 3px solid #0b8398; outline-offset: 3px; }
.product-page .size-guide-disclaimer, .product-page .size-guide-measuring { margin: 12px 0; color: #695e66; font-size: 12px !important; line-height: 1.5; }
.size-chart-wrap { border: 1px solid #eadfe5; border-radius: 17px; overflow: hidden; }
.size-chart { width: 100%; table-layout: fixed; border-collapse: collapse; color: #61565e; font-size: 14px; }
.size-chart th, .size-chart td { padding: 12px 17px; border-bottom: 1px solid #eee7eb; text-align: left; vertical-align: middle; overflow-wrap: anywhere; }
.size-guide-dialog .size-chart thead th { background: #faf7f9; font-size: 11px !important; line-height: 1.4; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.size-chart th:first-child { width: 22%; }
.size-chart tbody tr:last-child > * { border-bottom: 0; }
.size-chart tbody th strong { color: #ce0063; font: 900 19px/1.2 Montserrat, sans-serif; }
.product-page .size-chart tbody th small { display: block; color: #746771; font: 500 12px/1.5 Manrope, sans-serif !important; margin-top: 3px; }
.size-unit { display: block; font-weight: 500; text-transform: none; }
.size-chart .is-recommended { background: #fff1f7; }
.size-guide-dialog .size-recommender { margin-top: 20px; }
.size-guide-dialog .size-recommender__fields { min-width: 0; }
.size-guide-dialog .size-recommender__fields label { min-width: 0; }
.size-guide-dialog .size-recommender input { box-sizing: border-box; min-width: 0; font-size: 16px; }
@media (max-width: 760px) {
  .product-page .config-section--size .config-heading { gap: 8px; align-items: center; }
  .product-page .config-section--size .config-heading h2 { font-size: 23px; }
  .size-guide-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); padding: 20px 16px; border-radius: 20px; }
  .size-guide-dialog .size-dialog__heading { gap: 10px; top: -20px; }
  .size-guide-dialog .size-dialog__heading h2 { font-size: 26px; }
  .size-guide-dialog .size-dialog__intro { font-size: 14px; }
  .size-chart th, .size-chart td { padding: 11px 4px; }
  .size-guide-dialog .size-chart td { font-size: 13px !important; white-space: nowrap; }
  .size-guide-dialog .size-chart thead th { letter-spacing: 0; }
  .size-chart th:first-child { width: 24%; }
  .size-chart thead th:first-child { white-space: nowrap; }
  .size-chart tbody th strong { font-size: 16px; }
  .size-guide-dialog .size-recommender { padding: 17px; }
}

.size-dialog[hidden] { display: none; }
@media (max-width: 380px) {
  .size-guide-dialog .size-chart thead th { font-size: 10px !important; }
}
.size-dialog {
  position: fixed;
  z-index: 400;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(24, 19, 43, .62);
  backdrop-filter: blur(8px);
}
.size-dialog__panel {
  width: min(100%, 880px);
  max-height: min(90vh, 820px);
  padding: 30px;
  border-radius: 26px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 30px 80px rgba(24, 19, 43, .28);
}
.size-dialog__heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 22px; }
.size-dialog__heading small { color: var(--pink); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.size-dialog__heading h2 { margin: 6px 0 0; font: 900 clamp(25px, 4vw, 36px)/1.12 Montserrat, sans-serif; letter-spacing: -.04em; }
.size-dialog__close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid #e7dfe4;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 26px;
  cursor: pointer;
}
.size-dialog__intro { margin: 14px 0 22px; color: #695e66; font-size: 15px; line-height: 1.6; }
.size-dialog__table { border: 1px solid #eadfe5; border-radius: 17px; overflow: hidden; }
.size-dialog__table > div {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: .7fr 1.1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee7eb;
  color: #61565e;
  font-size: 14px;
}
.size-dialog__table > div:last-child { border-bottom: 0; }
.size-dialog__table > div:first-child { min-height: 44px; color: #8d8189; background: #faf7f9; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.size-dialog__table strong { color: var(--pink); font: 900 18px Montserrat, sans-serif; }
.size-recommender { margin-top: 22px; padding: 22px; border-radius: 18px; background: linear-gradient(135deg, #fff1f7, #effcff); }
.size-recommender__heading { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.size-recommender__heading h3 { margin: 0; font: 900 19px Montserrat, sans-serif; }
.size-recommender__heading p { margin: 0; color: #776b73; font-size: 12px; }
.size-recommender__fields { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.size-recommender label { color: #5e525b; font-size: 12px; font-weight: 800; }
.size-recommender input { width: 100%; height: 48px; margin-top: 7px; padding: 0 13px; border: 1px solid #dfd4da; border-radius: 12px; color: var(--ink); background: #fff; font: 700 15px Manrope, sans-serif; }
.size-recommender input:focus { outline: 3px solid rgba(247, 0, 118, .14); border-color: var(--pink); }
.size-recommender__button { min-height: 48px; margin-top: 14px; padding: 0 20px; border: 0; border-radius: 12px; color: #fff; background: var(--pink); font-weight: 900; cursor: pointer; }
.size-recommender__result { min-height: 24px; margin: 13px 0 0; color: #655a62; font-size: 13px; line-height: 1.5; }
.size-recommender__result strong { color: var(--pink); }
body.has-size-dialog { overflow: hidden; }

@media (max-width: 1180px) {
  .product-detail__layout { grid-template-columns: minmax(0, 450px) minmax(0, 580px); gap: 30px; }
  .product-config { max-width: 580px; }
}

@media (max-width: 1140px) {
  .product-detail > .shell,
  .product-info > .shell { width: min(calc(100% - 48px), 760px); }
  .product-detail__layout { grid-template-columns: 1fr; }
  .product-config { max-width: none; }
  .product-info__layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .product-detail > .shell,
  .product-benefits > .shell,
  .product-info > .shell,
  .similar-products > .shell { width: min(calc(100% - 28px), 100%); }
  .product-meta { font-size: 12px; }
  .size-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-benefit { min-height: 142px; }
  .package-compare { grid-template-columns: 1fr; }
  .size-dialog { padding: 12px; }
  .size-dialog__panel { padding: 21px; border-radius: 20px; }
  .size-dialog__table { overflow-x: auto; }
  .size-dialog__table > div { min-width: 620px; }
  .size-recommender__heading { display: block; }
  .size-recommender__heading p { margin-top: 6px; }
  .size-recommender__fields { grid-template-columns: 1fr; }
}

/* Samostatná informační stránka k přepravě */
.shipping-guide { background: #fff; }
.shipping-guide__hero { padding: 84px 0 72px; background: radial-gradient(circle at 88% 18%, rgba(40, 190, 217, .22), transparent 23%), radial-gradient(circle at 12% 90%, rgba(247, 0, 118, .12), transparent 30%), #fff8e6; }
.shipping-guide__hero .shell, .shipping-guide__steps .shell, .shipping-guide__notice .shell { width: min(calc(100% - 64px), 1120px); }
.shipping-guide__hero h1 { max-width: 820px; margin: 13px 0 22px; font: 900 clamp(42px, 6vw, 76px)/.98 Montserrat, sans-serif; letter-spacing: -.06em; }
.shipping-guide__hero > .shell > p:not(.eyebrow) { max-width: 720px; margin: 0 0 28px; color: #655a62; font-size: 18px; line-height: 1.7; }
.shipping-guide__steps { padding: 56px 0; }
.shipping-guide__steps .shell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shipping-guide__steps article { min-height: 190px; padding: 26px; border-radius: 22px; background: #ffe1ef; }
.shipping-guide__steps article:nth-child(2) { background: #fff0ae; }
.shipping-guide__steps article:nth-child(3) { background: #d8f5fa; }
.shipping-guide__steps strong { font: 900 19px/1.25 Montserrat, sans-serif; }
.shipping-guide__steps p { margin: 12px 0 0; color: #655a62; font-size: 15px; line-height: 1.6; }
.shipping-guide__notice { padding: 0 0 72px; }
.shipping-guide__notice .shell { padding: 25px 28px; border: 1px solid #e7dfe4; border-radius: 20px; display: flex; align-items: center; gap: 26px; background: #fff; box-shadow: 0 18px 42px rgba(31, 17, 27, .07); }
.shipping-guide__notice img { width: 120px; height: auto; }
.shipping-guide__notice strong { font: 900 17px Montserrat, sans-serif; }
.shipping-guide__notice p { margin: 7px 0 0; color: #6b6068; font-size: 14px; line-height: 1.55; }
@media (max-width: 760px) {
  .shipping-guide__hero { padding: 54px 0; }
  .shipping-guide__hero .shell, .shipping-guide__steps .shell, .shipping-guide__notice .shell { width: min(calc(100% - 28px), 100%); }
  .shipping-guide__hero > .shell > p:not(.eyebrow) { font-size: 16px; }
  .shipping-guide__steps .shell { grid-template-columns: 1fr; }
  .shipping-guide__steps article { min-height: 0; }
  .shipping-guide__notice .shell { align-items: flex-start; flex-direction: column; }
}

/* V5: obsah balení jako jednoduchá textová hodnota */
.package-summary {
  margin: 18px 0 4px;
  padding: 15px 17px 16px;
  border: 1px solid #eae2e7;
  border-radius: 14px;
  background: rgba(255,255,255,.62);
}
.package-summary__label {
  display: block;
  color: #087e5d;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.package-summary__line {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-summary__line > i {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #18b987;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}
.package-summary__line p {
  margin: 1px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  color: #514850;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.package-summary__line p span + span::before {
  content: '·';
  margin-right: 9px;
  color: #aaa0a6;
}

@media (max-width: 760px) {
  .package-summary { padding: 14px 15px 15px; }
  .package-summary__line p { font-size: 13px; }
}

/* Produkční interaktivní detail: kalendář a čtvrtý krok převzetí. */
.calendar-head button:disabled {
  color: #b8adb4;
  background: #f7f3f5;
  cursor: not-allowed;
  opacity: .7;
}
.calendar-day.is-date-option {
  color: #075f70;
  background: #e9faff;
  box-shadow: inset 0 0 0 1px rgba(24, 183, 216, .28);
  cursor: pointer;
}
.calendar-day.is-date-option::after { background: var(--cyan); }
.calendar-day.is-free {
  color: #075f49;
  background: #e8f9f2;
  box-shadow: inset 0 0 0 1px rgba(33, 194, 140, .25);
}
.calendar-day.is-free::after { background: #21c28c; }
.calendar-day.is-checking {
  color: #715a0f;
  background: #fff7d9;
  box-shadow: inset 0 0 0 1px rgba(220, 165, 18, .25);
}
.calendar-day.is-checking::after {
  background: #e3ad18;
  animation: product-calendar-pulse 1s ease-in-out infinite alternate;
}
.calendar-day.is-past {
  color: #c0b7bd;
  background: #faf8f9;
  box-shadow: none;
  cursor: not-allowed;
}
.calendar-day.is-past::after { display: none; }
.calendar-days--ssr { min-height: 190px; }
.calendar-placeholder {
  grid-column: 1 / -1;
  min-height: 190px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #71666e;
  background: #f8f5f7;
  font-size: 14px;
  text-align: center;
}
.calendar-day.is-range:not(.is-start):not(.is-end) {
  color: #9a0050;
  background: #ffe0ef;
  box-shadow: none;
}
.calendar-day.is-start,
.calendar-day.is-end {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 6px 15px rgba(247, 0, 118, .22);
}
.calendar-day:focus-visible,
.calendar-head button:focus-visible,
.choice-button:focus-visible {
  outline: 3px solid rgba(247, 0, 118, .3);
  outline-offset: 2px;
}
.duration-choices .choice-button.is-available {
  border-color: rgba(25, 175, 125, .45);
  color: #075f49;
  background: #edfbf6;
}
.duration-choices .choice-button.is-available small { color: #087e5d; }
.duration-choices .choice-button.is-selected {
  border-color: var(--pink);
  color: var(--ink);
  background: #fff1f7;
  box-shadow: inset 0 0 0 1px var(--pink);
}
.duration-choices .choice-button.is-unavailable {
  color: #8d8088;
  background: #f5f1f3;
}
.duration-choices .choice-button.is-unavailable small { color: #9a123d; }
.duration-choices .choice-button.is-inapplicable { color: #a3999f; background: #faf8f9; }
.duration-choices .choice-button.is-checking { color: #715a0f; background: #fff8dd; }
.duration-choices .choice-button:disabled:hover { border-color: #ece6ea; transform: none; }
.public-availability-status {
  min-height: 48px;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #5f555c;
  background: #f7f3f5;
  font-size: 14px;
  line-height: 1.5;
}
.public-availability-status[data-state="available"] { color: #075f49; background: #e6f9f1; }
.public-availability-status[data-state="unavailable"],
.public-availability-status[data-state="error"] { color: #9a123d; background: #fff0f4; }
.public-availability-status[data-state="checking"] { color: #765b09; background: #fff7d9; }
.delivery-help {
  margin: 10px 0 0;
  color: #71666e;
  font-size: 14px;
  line-height: 1.5;
}
.delivery-choice-button__icon { font-size: 14px; letter-spacing: -.04em; }

@keyframes product-calendar-pulse {
  from { opacity: .35; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .calendar-day.is-checking::after { animation: none; }
}

@media (max-width: 760px) {
  .config-heading { align-items: flex-start; }
  .calendar-legend { max-width: 100%; flex-wrap: wrap; justify-content: flex-start; row-gap: 6px; font-size: 14px; }
  .availability-calendar { padding: 14px 10px; }
  .calendar-weekdays,
  .calendar-days { gap: 4px; }
  .calendar-weekdays { font-size: 14px; }
  .calendar-day { min-height: 44px; font-size: 14px; }
  .public-availability-status { min-height: 0; padding: 11px 12px; font-size: 14px; }
  .delivery-choice-button { min-height: 76px; }
}

/* V6: jednotné minimum čitelnosti produktu. Nevztahuje se na dekorativní
   značky uvnitř ikon, pouze na text, podle kterého zákazník rozhoduje. */
.product-page .breadcrumbs,
.product-page .tag,
.product-page .product-meta,
.product-page .product-gallery__zoom,
.product-page .included-inline li,
.product-page .config-heading small,
.product-page .size-guide-link,
.product-page .size-choice-group > span,
.product-page .choice-button small,
.product-page .fit-note,
.product-page .weekend-tariff-note,
.product-page .addon-choice strong,
.product-page .addon-choice small,
.product-page .delivery-choice-button small,
.product-page .reservation-summary__dates small,
.product-page .reservation-summary__line,
.product-page .reservation-summary__line--deposit small,
.product-page .reservation-summary__note,
.product-page .product-benefit p,
.product-page .product-info__copy > p:not(.eyebrow),
.product-page .package-column__label,
.product-page .package-column li strong,
.product-page .package-column li small,
.product-page .included-list span,
.product-page .not-included,
.product-page .size-card__head span,
.product-page .size-table > div,
.product-page .size-table > div:first-child,
.product-page .size-card > p,
.product-page .accessory-card span,
.product-page .accessory-card p,
.product-page .accessory-card a,
.product-page .addon-category-card small,
.product-page .similar-card__image > span,
.product-page .similar-card p,
.product-page .similar-card > div:last-child a,
.product-page .size-dialog__heading small,
.product-page .size-dialog__table > div:first-child,
.product-page .size-recommender__heading p,
.product-page .size-recommender label,
.product-page .size-recommender__result,
.product-page .package-summary__label,
.product-page .package-summary__line p,
.product-page .mobile-reserve-bar small,
.product-page .mobile-reserve-bar button {
  font-size: 14px;
}

.product-page .size-guide-link,
.product-page .accessory-card a,
.product-page .similar-card > div:last-child a { min-height: 24px; }

/* Finální responzivní priorita: na Galaxy Tab S7+ zůstává všech pět délek
   bez zalomení, na telefonu se skládají do čitelné mřížky bez přetékání. */
.product-page .duration-choices {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.product-page .duration-choices .choice-button {
  min-width: 0;
  min-height: 118px;
  padding: 12px 7px;
  align-items: center;
  text-align: center;
}
.product-page .duration-choices .choice-button strong { font-size: 15px; }
.product-page .duration-choice__price { font-size: 18px; }
.product-page .duration-choice__status { font-size: 14px; }

@media (max-width: 620px) {
  .product-page .duration-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 0;
    overflow: visible;
  }

  .product-page .duration-choices .choice-button:last-child {
    grid-column: 1 / -1;
  }
}

/* Zvolený den zůstává čitelný i po dotyku. Mobilní prohlížeče mohou
   ponechat stav :hover aktivní, který dříve přebarvil číslo narůžovo. */
.product-page .calendar-day.is-start:hover,
.product-page .calendar-day.is-end:hover {
  color: #fff;
  box-shadow: 0 6px 15px rgba(247, 0, 118, .22);
}

/* Cena má vlastní nesmrštitelný sloupec; delší popis nesmí vytlačit
   cenu za okraj karty, zejména na telefonech. */
.product-page .delivery-choice-button {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr) max-content;
  align-items: center;
}
.product-page .delivery-choice-button > span:nth-child(2) {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}
.product-page .delivery-choice-button strong { line-height: 1.35; }
.product-page .delivery-choice-button small { line-height: 1.5; }
.product-page .delivery-choice-button .delivery-choice-button__price {
  min-width: max-content;
  margin-left: 0;
  justify-self: end;
  white-space: nowrap;
  overflow-wrap: normal;
  line-height: 1.35;
}

/* Approved 2026-08-09 inline accessories: keep its compact typography isolated
   from the later global product readability overrides. */
.product-page .config-section--addons { padding: 24px 0 26px; }
.product-page .config-section--addons .config-heading { margin-bottom: 16px; gap: 15px; }
.product-page .config-section--addons .config-heading > div { min-width: 0; }
.product-page .config-section--addons .config-heading small { font-size: 11px !important; margin-bottom: 6px; }
.product-page .config-section--addons .config-heading h2 { font-size: 23px; line-height: 1.2; }
.product-page .config-section--addons .size-guide-link { font-size: 12px !important; line-height: 1.4; flex: 0 0 150px; }
.product-page .addon-choice { text-decoration: none; }
.product-page .addon-choice strong { font-size: 13px !important; line-height: 1.25; overflow-wrap: anywhere; }
.product-page .addon-choice small { font-size: 11.5px !important; line-height: 1.35; }
.product-page .addon-choice__image { grid-template: minmax(0, 1fr) / minmax(0, 1fr); }
.product-page .addon-choice__image img { min-width: 0; min-height: 0; }
.product-page .addon-choice__placeholder { font-size: 32px; color: var(--pink); }
.product-page .addon-choice:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
@media (max-width: 760px) {
  .product-page .config-section--addons { padding-block: 23px; }
  .product-page .config-section--addons .config-heading { flex-wrap: wrap; }
  .product-page .config-section--addons .config-heading h2 { font-size: 20px; }
  .product-page .config-section--addons .size-guide-link { flex-basis: auto; min-height: 24px; }
  .product-page .addon-choice > span:last-child { min-width: 0; }
}
@media (max-width: 620px) {
  .product-page .delivery-choice-button {
    grid-template-columns: 42px minmax(0, 1fr) max-content;
    gap: 10px;
    padding: 12px;
  }
  .product-page .delivery-choice-button__icon,
  .product-page .delivery-choice-button__logo { width: 42px; height: 42px; }
}
