:root {
  --ink: #26324a;
  --ink-soft: #4d5b73;
  --brand-blue: #5167c7;
  --sky: #dcefff;
  --tiffany: #82d7cf;
  --tiffany-deep: #3ba9a3;
  --lavender: #d7c9f2;
  --cream: #fffdf7;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(38, 50, 74, 0.13);
  --shadow: 0 22px 55px rgba(38, 50, 74, 0.14);
  --shadow-soft: 0 12px 32px rgba(38, 50, 74, 0.1);
  --radius-organic: 34px 48px 38px 52px / 30px 42px 34px 46px;
  --font-display: "Rubik Bubbles", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Yeseva One", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-body);
  background-color: var(--sky);
  background-image:
    linear-gradient(180deg, rgba(235, 247, 255, 0.08), rgba(229, 243, 255, 0.3)),
    url("/assets/sky-v15.webp");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(216,238,255,.38));
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 400;
}

.page-hero h1,
.section-heading h2 {
  font-family: var(--font-display);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 22px 0;
}

.nav-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px, 100%);
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.72), rgba(221,242,250,.56) 45%, rgba(255,255,255,.68)),
    rgba(218, 239, 248, .58);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px 44px 32px 46px / 26px 38px 29px 42px;
  box-shadow:
    inset 0 2px 1px rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(81,103,199,.1),
    0 14px 36px rgba(38, 50, 74, 0.14);
  backdrop-filter: blur(22px) saturate(1.16);
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center 49% / cover no-repeat;
  opacity: .48;
  pointer-events: none;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo { width: auto; height: auto; object-fit: contain; }
.brand-logo-nav { width: 172px; max-height: 54px; filter: drop-shadow(0 4px 10px rgba(38,50,74,.16)); }
.brand-logo-footer { width: 205px; filter: drop-shadow(0 5px 12px rgba(38,50,74,.16)); }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 45% 55% 46% 54% / 54% 44% 56% 46%;
  color: rgba(38,50,74,.78);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255,255,255,.68);
  color: var(--ink);
  outline: none;
}

.nav-order {
  flex: 0 0 auto;
  padding: 12px 17px;
  border-radius: 48% 52% 54% 46% / 52% 45% 55% 48%;
  background: var(--tiffany);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}

.cart-link { gap: 8px; display: inline-flex; align-items: center; }
.cart-count {
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: 800 12px/1 var(--font-body);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 9px;
  background: currentColor;
}

.page-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 82px 0; }
.section.compact { padding: 48px 0; }

.hero {
  min-height: calc(100vh - 90px);
  padding: 50px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  line-height: .95;
  letter-spacing: 0;
  font-weight: 400;
}

.page-hero h1 { color: var(--brand-blue); font-size: clamp(58px, 9vw, 116px); }
.hero-logo-heading { max-width: 660px !important; line-height: 1 !important; letter-spacing: 0 !important; }
.hero-logo {
  width: min(100%, 660px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(38,50,74,.16));
  animation: brand-float 7s ease-in-out infinite;
}

@keyframes brand-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.35;
  color: var(--ink-soft);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 44% 56% 49% 51% / 56% 45% 55% 44%;
  background: var(--ink);
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.button.secondary {
  background: var(--glass-strong);
  color: var(--ink);
  border: 1px solid rgba(38,50,74,.12);
}

.button.tiffany { background: var(--tiffany-deep); color: white; }
.button:focus-visible { outline: 3px solid rgba(59,169,163,.35); outline-offset: 3px; }
.button.is-disabled,
.button:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; }

.benefit-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.benefit-list li,
.chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-showcase {
  position: relative;
  min-height: 580px;
}

.hero-photo {
  position: absolute;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #dcefff;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(38,50,74,.18);
}

.hero-photo > .product-photo,
.product-media > .product-photo,
.main-image > .product-photo,
.story-photo > .product-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0;
  object-fit: cover;
}

.floral-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 9px 18px rgba(38,50,74,.2));
}

.hero-photo.main {
  inset: auto;
  width: min(82%, 470px);
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hero-photo.small-a {
  width: 190px;
  height: auto;
  left: 0;
  top: 0;
  transform: none;
}
.hero-photo.small-b {
  width: 185px;
  height: auto;
  right: -5px;
  bottom: 0;
  transform: none;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.content-card h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}
.content-card h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
}
.section-heading p { max-width: 480px; margin: 0; color: var(--ink-soft); line-height: 1.6; }

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

.popular-catalog-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 52px);
}

.popular-catalog-link {
  min-width: min(100%, 290px);
  min-height: 68px;
  padding-inline: 36px;
}

.home-category-section {
  position: relative;
  isolation: isolate;
  padding: 54px 0 82px;
}

.home-category-section > .page-shell {
  position: relative;
  z-index: 1;
}

.category-heading {
  margin-bottom: clamp(30px, 4vw, 46px);
}

.category-browser {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  align-items: stretch;
  gap: 0;
  filter: drop-shadow(0 22px 42px rgba(38,50,74,.14));
}

.category-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 10px;
  padding-block: 10px;
}

.category-tab {
  --category-stripe: linear-gradient(112deg, rgba(255,255,255,.82), rgba(224,245,251,.72));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 94px;
  padding: 18px 32px 18px 30px;
  display: flex;
  align-items: center;
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(255,255,255,.96);
  border-right: 0;
  border-radius: 24px 0 0 24px;
  background: var(--category-stripe);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.98), inset 0 -1px 0 rgba(81,103,199,.08), 0 12px 24px rgba(38,50,74,.11);
  backdrop-filter: blur(18px) saturate(1.12);
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), color .2s ease, box-shadow .28s ease, background .2s ease, border-color .2s ease;
}

.category-tab::after {
  content: "";
  position: absolute;
  inset: 4px 0;
  width: auto;
  z-index: 0;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center var(--flower-position, 50%) / 100% auto no-repeat;
  opacity: .3;
  filter: saturate(.86) contrast(1.03);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.42), #000 52%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.42), #000 52%);
  pointer-events: none;
}

.category-tab:nth-child(1) { --flower-position: 15%; }
.category-tab:nth-child(2) { --category-stripe: linear-gradient(112deg, rgba(224,249,247,.88), rgba(159,231,223,.66)); --flower-position: 33%; }
.category-tab:nth-child(3) { --category-stripe: linear-gradient(112deg, rgba(231,244,255,.9), rgba(194,222,250,.72)); --flower-position: 51%; }
.category-tab:nth-child(4) { --category-stripe: linear-gradient(112deg, rgba(255,255,255,.84), rgba(220,239,255,.75)); --flower-position: 70%; }
.category-tab:nth-child(5) { --category-stripe: linear-gradient(112deg, rgba(220,249,246,.9), rgba(137,218,211,.7)); --flower-position: 88%; }

.category-tab:hover,
.category-tab:focus-visible {
  transform: translateX(8px) translateY(-2px);
  border-color: rgba(255,255,255,1);
  box-shadow: inset 0 1px 0 white, 0 17px 32px rgba(38,50,74,.16), 0 0 0 2px rgba(159,231,223,.18);
  outline: 0;
}

.category-tab.is-active {
  color: white;
  border-color: rgba(180,225,255,.72);
  background: linear-gradient(112deg, #1e376b, #315ca5 62%, #337f91);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 18px 34px rgba(30,55,107,.28), 0 0 24px rgba(130,215,207,.28);
  transform: translateX(12px) translateY(-2px);
}

.category-tab.is-active::after { opacity: .48; filter: brightness(1.55) saturate(.68); }

.category-tab-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 15px;
  box-shadow: inset 0 1px 0 white;
}

.category-tab.is-active .category-tab-number {
  background: rgba(255,255,255,.94);
}

.category-tab-copy {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.category-tab-copy strong {
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.2;
  font-weight: 400;
  text-wrap: balance;
}

.category-tab-copy small {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.category-tab.is-active .category-tab-copy small { color: rgba(255,255,255,.74); }
.category-tab-arrow { font-size: 34px; line-height: 1; transform: translateY(-1px); }

.category-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 510px;
  justify-self: end;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.96);
  border-left: 0;
  border-radius: 0 30px 30px 0;
  background: rgba(220,239,255,.72);
  box-shadow: inset 0 1px 0 white;
  backdrop-filter: blur(16px);
}

.category-preview-panel {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(.965);
  transition: opacity .34s ease, transform .42s cubic-bezier(.2,.8,.2,1), visibility .34s ease;
  pointer-events: none;
}

.category-preview-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.category-preview-panel > .category-preview-backdrop,
.category-preview-panel > .product-photo,
.category-preview-panel > .floral-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-preview-panel > .category-preview-backdrop {
  z-index: 0;
  object-fit: cover;
  opacity: .34;
  filter: blur(17px) saturate(.85);
  transform: scale(1.14);
}

.category-preview-panel > .product-photo {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 29px 29px 0;
}

.category-preview-panel > .floral-frame { z-index: 3; }

.category-preview-label {
  position: absolute;
  left: 7%;
  bottom: 7%;
  z-index: 4;
  min-width: 210px;
  padding: 17px 25px 14px;
  display: grid;
  gap: 3px;
  border-radius: 48% 52% 45% 55% / 55% 43% 57% 45%;
  background: rgba(255,255,255,.91);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(38,50,74,.18);
  backdrop-filter: blur(12px);
}

.category-preview-label strong { font-size: 18px; font-weight: 400; }
.category-preview-label small { color: var(--brand-blue); font-size: 13px; }
.daisy-category-a { width: 58px; height: 58px; top: 15%; right: 2%; animation-delay: -1.4s; }
.daisy-category-b { width: 42px; height: 42px; bottom: 7%; left: 2%; animation-delay: -4.1s; }

.home-portfolio-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: 68px 0 72px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-portfolio-section > .page-shell {
  position: relative;
  z-index: 1;
}

.portfolio-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.portfolio-grid {
  display: grid;
  gap: 14px;
}

/* Keep every photo visible before the proportional rows are enhanced by JS. */
.portfolio-grid:not(.is-laid-out) {
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
}
.portfolio-grid:not(.is-laid-out) > .portfolio-shot {
  aspect-ratio: var(--portfolio-ratio, 1);
}

.portfolio-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 14px;
}

.portfolio-shot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  background: rgba(220,239,255,.42);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(38,50,74,.14);
}

.portfolio-shot img {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-shot .portfolio-shot-main {
  position: static;
  object-fit: cover;
  transform: none;
}

.daisy-portfolio-a { width: 58px; height: 58px; left: 2%; top: 10%; animation-delay: -2.1s; }
.daisy-portfolio-b { width: 44px; height: 44px; right: 2%; bottom: 5%; animation-delay: -4.6s; }

.product-card {
  min-width: 0;
  padding: 0 0 10px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  isolation: isolate;
  overflow: hidden;
  background: #dcefff;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(38,50,74,.14);
}
.product-media.catalog-framed,
.product-framed,
.search-product-frame {
  overflow: hidden;
  border: 0;
  border-radius: 6%;
  box-shadow: 0 10px 24px rgba(38,50,74,.14);
}
.product-media.catalog-framed > .floral-frame,
.product-framed > .floral-frame,
.search-product-frame > .floral-frame {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: none;
}

.product-card-body {
  margin: 10px 4px 0;
  padding: 0 4px 2px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-card h3 {
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: none;
  text-wrap: balance;
}
.product-card h3 a { display: block; max-width: 100%; }

.cloud-surface {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.cloud-surface::before {
  content: "";
  position: absolute;
  inset: var(--cloud-inset, -3px);
  z-index: -1;
  background: var(--cloud-fill, rgba(255,255,255,.92));
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 14px rgba(38,50,74,.11));
  pointer-events: none;
}

.name-cloud {
  --cloud-fill: rgba(255,255,255,.93);
  --cloud-inset: -5px -4px;
  min-height: 124px;
  padding: 31px 22px 27px;
  display: grid;
  place-items: center;
  text-align: center;
}

.card-bottom {
  margin-top: auto;
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.card-select {
  --cloud-fill: rgba(130,215,207,.94);
  --cloud-inset: -4px;
  min-width: 104px;
  min-height: 50px;
  padding: 15px 16px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
}

.price-cloud {
  --cloud-fill: rgba(255,255,255,.95);
  --cloud-inset: -4px;
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 17px 9px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  max-width: 100%;
  line-height: 1.12;
  text-align: center;
  overflow-wrap: anywhere;
}

.value-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card,
.step-card,
.content-card,
.filter-shell,
.faq-item,
.contact-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: var(--radius-organic);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.value-card,
.step-card { padding: 28px; }
.value-card.cloud-surface {
  --cloud-fill: rgba(255,255,255,.82);
  --cloud-inset: -9px;
  min-height: 270px;
  padding: 56px 44px 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.value-card .number,
.step-card .number {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 47% 53% 44% 56% / 54% 46% 55% 45%;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.value-card h3,.step-card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.28; }
.value-card p,.step-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }

.page-hero { padding: 76px 0 40px; }
.page-hero h1 { font-size: clamp(52px, 8vw, 98px); }
.page-hero p { max-width: 700px; margin: 23px 0 0; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }

.filter-shell { padding: 18px; margin-bottom: 24px; }
.catalog-controls { display: flex; align-items: center; gap: 12px; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 43px;
  padding: 10px 15px;
  border: 1px solid rgba(38,50,74,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.filter-button[aria-pressed="true"] { background: var(--ink); color: white; }
.catalog-search {
  min-width: 250px;
  margin-left: auto;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(38,50,74,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: var(--ink);
  outline: none;
}
.catalog-search:focus { border-color: var(--tiffany-deep); box-shadow: 0 0 0 3px rgba(59,169,163,.15); }
.catalog-empty { display: none; padding: 42px; text-align: center; background: var(--glass); border-radius: var(--radius-organic); }
.catalog-empty.is-visible { display: block; }

.detail-layout {
  padding: 58px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .95fr);
  gap: 48px;
  align-items: start;
}
.detail-gallery,.detail-panel { min-width: 0; }
.main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  isolation: isolate;
  overflow: hidden;
  background: #dcefff;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(38,50,74,.16);
}
.thumbs { margin-top: 13px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.thumb {
  aspect-ratio: 1;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}
.thumb[aria-current="true"] { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.detail-panel {
  position: sticky;
  top: 105px;
  padding: 34px;
  background: var(--glass-strong);
  border-radius: 48px 62px 52px 68px / 58px 46px 66px 50px;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.detail-panel h1 {
  margin: 12px 0 16px;
  font-size: clamp(29px, 2.8vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: none;
}
.detail-price { margin: 0; font-size: 30px; font-weight: 900; }
.detail-lead { margin: 22px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.detail-note { margin-top: 20px; padding: 16px 18px; border-radius: 24px 32px 26px 35px / 29px 23px 34px 25px; background: rgba(130,215,207,.22); line-height: 1.5; }
.detail-spec-note { margin: 18px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; text-align: center; }
.order-options {
  margin-top: 24px;
  padding: 20px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(38,50,74,.1);
  border-radius: 28px 36px 30px 40px / 33px 25px 39px 28px;
  background: rgba(255,255,255,.58);
}

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 700; }
.field input,
.field textarea,
.field select,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid rgba(38,50,74,.16);
  border-radius: 17px 22px 18px 24px / 20px 16px 23px 18px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  outline: none;
}
.field input,
.field select { min-height: 48px; padding: 11px 14px; }
.field textarea { min-height: 88px; padding: 12px 14px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--tiffany-deep); box-shadow: 0 0 0 3px rgba(59,169,163,.13); }

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0,1.06fr) minmax(360px,.94fr);
  gap: 22px;
  align-items: start;
}
.checkout-layout,
.checkout-card,
.checkout-form,
.field-grid,
.field { min-width: 0; max-width: 100%; }
.checkout-card,
.checkout-form {
  padding: clamp(24px,4vw,42px);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--radius-organic);
  background: var(--glass-strong);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.checkout-form { display: grid; gap: 16px; }
.checkout-card h2,
.checkout-form h2 { margin: 0; font-size: clamp(27px,3.4vw,38px); line-height: 1.12; letter-spacing: 0; }
.checkout-heading { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.checkout-count { padding: 8px 11px; border-radius: 999px; background: rgba(130,215,207,.25); font-size: 12px; font-weight: 800; white-space: nowrap; }
.checkout-items { margin-top: 24px; display: grid; gap: 12px; }
.cart-empty { padding: 30px 22px; text-align: center; border-radius: 25px; background: rgba(255,255,255,.58); }
.cart-empty h3 { margin: 0; font-size: 22px; }
.cart-empty p { margin: 10px auto 20px; max-width: 420px; color: var(--ink-soft); line-height: 1.55; }
.cart-item {
  padding: 11px;
  display: grid;
  grid-template-columns: 78px minmax(0,1fr) auto;
  gap: 13px;
  align-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
}
.cart-item img { width: 78px; height: 78px; object-fit: cover; border-radius: 15px; background: url('/assets/sky-v15.webp') center/cover; }
.cart-item h3 { margin: 0; font-size: 15px; line-height: 1.3; }
.cart-item p { margin: 5px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.cart-remove { padding: 7px 9px; border: 0; border-radius: 999px; background: rgba(38,50,74,.08); cursor: pointer; font-size: 12px; }
.checkout-total { margin-top: 18px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(38,50,74,.1); }
.checkout-total strong { font-family: var(--font-body); font-size: 22px; }
.contact-choice { margin: 0; padding: 16px; display: flex; flex-wrap: wrap; gap: 13px 22px; border: 1px solid rgba(38,50,74,.12); border-radius: 22px; }
.contact-choice legend { padding: 0 7px; font-family: var(--font-body); font-size: 13px; font-weight: 700; }
.contact-choice label { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; }
.checkout-submit { width: 100%; }
.form-hint { margin: 10px 0 0!important; color: var(--ink-soft)!important; font-size: 12px!important; line-height: 1.5!important; }
.form-hint-important { margin: 0!important; padding: 12px 14px; border-radius: 17px; background: rgba(130,215,207,.18); }
.form-hint-important.is-error { background: rgba(192,72,79,.13); color: #7f2630!important; }
.order-honeypot { position: absolute!important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.order-success {
  grid-column: 1 / -1;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-organic);
  background: var(--glass-strong);
  box-shadow: var(--shadow);
  text-align: center;
}
.order-success h2 { margin: 0; font-size: clamp(31px, 5vw, 48px); }
.order-success p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.order-success strong { color: var(--brand-blue); font-size: 1.16em; white-space: nowrap; }
.order-success .button { margin-top: 12px; }

.content-stack { display: grid; gap: 20px; }
.content-card { padding: clamp(28px, 5vw, 58px); }
.content-card p { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.content-card p:last-child { margin-bottom: 0; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: start; }
.story-photo { position: relative; min-height: 0; aspect-ratio: 1 / 1; isolation: isolate; overflow: hidden; background: #dcefff; border: 3px solid rgba(255,255,255,.96); border-radius: 24px; box-shadow: 0 14px 30px rgba(38,50,74,.16); }

.faq-list { display: grid; gap: 13px; }
.faq-item { overflow: hidden; }
.faq-item summary { padding: 22px 25px; cursor: pointer; font-weight: 900; font-size: 18px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-size: 24px; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 25px 23px; color: var(--ink-soft); line-height: 1.65; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.contact-card { padding: clamp(30px, 5vw, 58px); }
.contact-card h2 { margin: 0 0 18px; font-size: clamp(31px,4vw,50px); line-height: 1.1; letter-spacing: 0; }
.contact-card p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.contact-meta { margin: 28px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.contact-meta li { padding: 14px 16px; border-radius: 22px; background: rgba(255,255,255,.62); font-weight: 800; }

.site-footer { padding: 28px 20px 34px; }
.footer-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px,100%);
  margin: 0 auto;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 30px 44px 32px 46px / 26px 38px 29px 42px;
  border: 1px solid rgba(255,255,255,.9);
  background:
    linear-gradient(108deg, rgba(255,255,255,.73), rgba(217,241,249,.58) 47%, rgba(255,255,255,.7)),
    rgba(218,239,248,.62);
  color: var(--ink);
  box-shadow:
    inset 0 2px 1px rgba(255,255,255,.92),
    0 14px 36px rgba(38,50,74,.12);
  backdrop-filter: blur(22px) saturate(1.16);
}
.footer-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center 61% / cover no-repeat;
  opacity: .5;
  pointer-events: none;
}
.footer-shell p { margin: 0; color: rgba(38,50,74,.68); font-size: 13px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 15px; font-size: 13px; font-weight: 800; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 300;
  max-width: min(480px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 22px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.visually-hidden { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }

/* Brighter brand, cloud navigation and dark-blue action plaques */
.nav-shell .brand {
  position: relative;
  isolation: isolate;
  padding: 7px 13px;
}
.nav-shell .brand::before {
  content: "";
  position: absolute;
  inset: -7px -11px;
  z-index: -1;
  background: rgba(255,255,255,.72);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 7px 11px rgba(38,50,74,.13));
}
.brand-logo-nav {
  position: relative;
  z-index: 1;
  filter: brightness(1.08) saturate(1.24) contrast(1.04) drop-shadow(0 4px 10px rgba(38,50,74,.2));
}
.nav-links a {
  position: relative;
  isolation: isolate;
  transition: color .22s ease, transform .22s ease;
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0 -3px;
  z-index: -1;
  background: rgba(255,255,255,.78);
  opacity: 0;
  transform: translateY(5px) scale(.82);
  transition: opacity .22s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 6px 8px rgba(38,50,74,.09));
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] { background: transparent; transform: translateY(-1px); }
.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a[aria-current="page"]::before { opacity: 1; transform: translateY(0) scale(1); }

.search-trigger {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 48% 52% 46% 54% / 53% 45% 55% 47%;
  background: rgba(255,255,255,.72);
  box-shadow: 0 7px 16px rgba(38,50,74,.1);
  cursor: pointer;
}
.search-trigger svg,
.cart-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.search-trigger:hover,
.search-trigger:focus-visible { background: white; outline: 3px solid rgba(81,103,199,.2); }
.nav-order,
.button.tiffany { background: var(--ink); color: white; }
.nav-order { box-shadow: 0 8px 18px rgba(38,50,74,.2), inset 0 0 0 1px rgba(255,255,255,.18); }
.cart-icon { width: 17px; height: 17px; }
.card-select { --cloud-fill: var(--ink); color: white; }

/* Search drawer */
body.search-is-open { overflow: hidden; }
.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  grid-template-columns: 1fr auto;
}
.search-drawer[hidden] { display: none; }
.search-scrim {
  grid-column: 1;
  grid-row: 1;
  border: 0;
  background: rgba(24,35,58,.35);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity .28s ease;
  cursor: default;
}
.search-panel {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: min(34vw, 500px);
  min-width: 410px;
  height: 100dvh;
  padding: 72px 34px 32px;
  overflow: auto;
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(224,242,255,.94)),
    url("/assets/sky-v15.webp") center / cover;
  border-left: 1px solid rgba(255,255,255,.9);
  box-shadow: -28px 0 70px rgba(38,50,74,.18);
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.search-drawer.is-open .search-scrim { opacity: 1; }
.search-drawer.is-open .search-panel { transform: translateX(0); }
.search-close {
  position: absolute;
  right: 24px;
  top: 22px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.search-panel h2 { margin: 0 0 22px; color: var(--brand-blue); font-size: clamp(36px,4vw,54px); line-height: 1.04; letter-spacing: 0; }
.global-search-field {
  min-height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(38,50,74,.13);
  border-radius: 27px 35px 29px 38px / 32px 26px 37px 28px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}
.global-search-field svg { flex: 0 0 auto; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.global-search-field input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.search-keywords { margin: 16px 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.search-keywords button {
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.search-caption { margin: 22px 0 10px; font-family: var(--font-body); font-size: 13px; font-weight: 900; }
.global-search-results { display: grid; gap: 9px; }
.global-search-result {
  padding: 9px;
  display: grid;
  grid-template-columns: 62px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  border-radius: 20px 28px 22px 30px / 26px 20px 31px 23px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.88);
}
.global-search-result:hover { background: white; transform: translateX(-3px); }
.search-product-frame { position: relative; width: 62px; height: 62px; overflow: hidden; border-radius: 16px; background: url("/assets/sky-v15.webp") center / cover; }
.global-search-result .search-product-frame > img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.search-product-frame > .floral-frame { z-index: 2; }
.global-search-result span { min-width: 0; display: grid; gap: 5px; }
.global-search-result strong { overflow-wrap: anywhere; font-size: 13px; line-height: 1.25; }
.global-search-result small { color: var(--ink-soft); font-size: 11px; line-height: 1.3; }
.global-search-empty { padding: 24px; text-align: center; color: var(--ink-soft); background: rgba(255,255,255,.65); border-radius: var(--radius-organic); }

/* Product galleries: hover arrows on desktop, swipe on touch screens */
.product-media-link { position: absolute; inset: 0; z-index: 1; display: block; touch-action: pan-y; }
.product-media-link > .product-photo,
.main-image > .gallery-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0;
  object-fit: cover;
}
.gallery-slide { opacity: 0; transform: scale(.985); transition: opacity .25s ease, transform .35s ease; pointer-events: none; }
.gallery-slide.is-active { z-index: 2; opacity: 1; transform: scale(1); }
.main-image { touch-action: pan-y; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 43px;
  height: 43px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(81,103,199,.38);
  border-radius: 50%;
  background: transparent;
  color: var(--brand-blue);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(.85);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  cursor: pointer;
}
.gallery-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.gallery-prev { left: 6%; }
.gallery-next { right: 6%; }
.gallery-arrow:hover { background: transparent; border-color: var(--brand-blue); }
.gallery-arrow svg { filter: drop-shadow(0 1px 2px rgba(255,255,255,.9)); }
.gallery-arrow:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.gallery-counter {
  position: absolute;
  right: 10%;
  bottom: 8%;
  z-index: 6;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(38,50,74,.82);
  color: white;
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transition: opacity .2s ease;
}
[data-gallery].gallery-keyboard-active .gallery-arrow { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1); }
[data-gallery].gallery-keyboard-active .gallery-counter { opacity: 1; }
@media (hover: hover) {
  [data-gallery].gallery-pointer-active .gallery-arrow { opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1); }
  [data-gallery].gallery-pointer-active .gallery-counter { opacity: 1; }
}

/* Colour variants */
.color-picker { margin: 0; padding: 0; border: 0; }
.color-picker legend { margin-bottom: 11px; font-size: 13px; font-weight: 800; }
.color-options { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.color-option {
  position: relative;
  min-width: 0;
  padding: 9px 7px;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(38,50,74,.1);
  border-radius: 22px 28px 23px 30px / 27px 21px 31px 24px;
  background: rgba(255,255,255,.75);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.color-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.color-option:has(input:checked) { background: var(--ink); color: white; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(38,50,74,.17); }
.color-option:has(input:focus-visible) { outline: 3px solid rgba(81,103,199,.25); outline-offset: 2px; }
.color-swatch { width: 27px; height: 27px; border-radius: 50%; background: var(--swatch); border: 2px solid rgba(38,50,74,.15); box-shadow: inset 0 2px 4px rgba(255,255,255,.5); }
.color-picker p { margin: 9px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
.color-picker.has-error { padding: 9px; border-radius: 20px; outline: 2px solid #b43b4b; }

/* Cloud-led homepage and individual order */
.hero { position: relative; isolation: isolate; }
.hero-intro {
  padding: 26px 0 34px;
}
.floating-daisy {
  position: absolute;
  z-index: 0;
  width: 92px;
  height: 92px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 18px rgba(38,50,74,.23));
  animation: daisy-drift 6s ease-in-out infinite;
}
@keyframes daisy-drift {
  0%,100% { transform: translate3d(0,0,0) rotate(-7deg) rotateX(3deg); }
  50% { transform: translate3d(0,-13px,0) rotate(7deg) rotateX(-4deg); }
}
.home-values-section,
.home-journey,
.home-path-section { position: relative; isolation: isolate; }
.home-values-section > .page-shell,
.home-journey > .page-shell,
.home-path-section > .page-shell { position: relative; z-index: 1; }
.hero-intro,
.hero-showcase { position: relative; z-index: 1; }
.daisy-hero-inset {
  width: 48px;
  height: 48px;
  left: calc((100vw - 100%) / -2 + 10px);
  top: 32%;
  bottom: auto;
}
.daisy-values-inset { width: 58px; height: 58px; top: 22%; right: 7px; animation-delay: -2s; }
.daisy-journey-inset { width: 50px; height: 50px; top: 44%; left: 7px; animation-delay: -1s; }
.daisy-path-inset { width: 42px; height: 42px; top: 25%; right: 7px; animation-delay: -4s; }

/* A more editorial homepage after the opening catalog */
.home-editorial-section,
.home-process-section,
.home-individual-section,
.home-notes-section { position: relative; isolation: isolate; }
.home-editorial-section > .page-shell,
.home-process-section > .page-shell,
.home-individual-section > .page-shell,
.home-notes-section > .page-shell { position: relative; z-index: 1; }

.framed-square {
  position: relative;
  aspect-ratio: 1 / 1;
  isolation: isolate;
  overflow: hidden;
  background: #dcefff;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(38,50,74,.18);
}
.framed-square > .product-photo { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

/* Product-frame overlays define the edge themselves. Keep later component
   styles from reintroducing a border outside that edge on large images. */
.framed-square.product-framed,
.story-photo.product-framed,
.hero-photo.product-framed {
  border: 0;
  border-radius: 6%;
  background: transparent;
}
.framed-square.product-framed > .product-photo,
.story-photo.product-framed > .product-photo,
.hero-photo.product-framed > .product-photo,
.framed-square.product-framed > .floral-frame,
.story-photo.product-framed > .floral-frame,
.hero-photo.product-framed > .floral-frame {
  inset: 0;
  width: 100%;
  height: 100%;
}

/* The photograph ends underneath the translucent resin, never outside it. */
.product-media.catalog-framed,
.search-product-frame {
  background: transparent;
}
.product-media.catalog-framed .product-photo,
.product-framed > .product-photo,
.search-product-frame > img {
  clip-path: inset(1.25% round 5.5%);
}

.home-editorial { display: grid; grid-template-columns: minmax(330px,.82fr) minmax(0,1.18fr); align-items: center; gap: clamp(42px,7vw,96px); }
.editorial-photo { transform: rotate(-1.5deg); }
.editorial-copy { padding: 28px 0; text-align: left; }
.editorial-copy h2 { margin: 10px 0 24px; color: var(--brand-blue); font-size: clamp(39px,5.2vw,70px); line-height: 1.02; letter-spacing: -.02em; }
.editorial-copy > p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.editorial-facts { margin-top: 35px; padding-top: 25px; display: flex; gap: 42px; border-top: 1px solid rgba(38,50,74,.18); }
.editorial-facts span { max-width: 150px; color: var(--ink-soft); font-size: 14px; line-height: 1.4; }
.editorial-facts strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 39px; line-height: 1; }

.home-process-section { margin: 30px 0; padding: 88px 0 96px; color: white; background: linear-gradient(118deg, rgba(81,103,199,.94), rgba(58,153,163,.9)), url('/assets/sky-v15.webp') center / cover; overflow: hidden; border-block: 1px solid rgba(255,255,255,.78); box-shadow: 0 22px 48px rgba(38,50,74,.16); }
.home-process-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background: radial-gradient(circle at 8% 12%, #82d7cf 0 3px, transparent 4px), radial-gradient(circle at 87% 72%, #fff 0 2px, transparent 3px); background-size: 76px 76px, 92px 92px; }
.process-heading { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.process-heading .eyebrow { color: #9fe7df; }
.process-heading h2 { margin: 8px 0 15px; color: white; font-size: clamp(39px,5vw,64px); line-height: 1.05; }
.process-heading > p:last-child { margin: 0 auto; max-width: 610px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; }
.process-line { position: relative; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; list-style: none; counter-reset: none; }
.process-line::before { content: ""; position: absolute; left: 8%; right: 8%; top: 31px; height: 1px; background: rgba(159,231,223,.42); }
.process-line li { position: relative; min-width: 0; text-align: center; }
.process-line li > span { position: relative; z-index: 1; width: 62px; height: 62px; margin: 0 auto 22px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(38,50,74,.82); color: white; font-weight: 900; }
.process-line h3 { margin: 0 0 9px; color: white; font-size: 21px; }
.process-line p { margin: 0 auto; max-width: 225px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.55; }

.home-individual-section { margin: 0; padding: 54px 0 58px; overflow: hidden; }
.home-individual-cloud {
  --cloud-fill: linear-gradient(145deg, rgba(255,255,255,.97), rgba(226,247,250,.95));
  --cloud-inset: -8px;
  min-height: 700px;
  padding: 94px clamp(82px,8vw,118px) 90px;
  display: grid;
  grid-template-columns: minmax(0,1.13fr) minmax(320px,.87fr);
  align-items: center;
  gap: clamp(42px,6vw,78px);
}
.home-individual-cloud::before {
  -webkit-mask-image: url("/assets/sloenka-dialog-cloud-safe.svg");
  mask-image: url("/assets/sloenka-dialog-cloud-safe.svg");
  filter: drop-shadow(0 17px 26px rgba(38,50,74,.16));
}
.home-individual-copy { min-width: 0; }
.home-individual-copy h2 { max-width: 660px; margin: 10px 0 18px; color: var(--brand-blue); font-size: clamp(38px,4.6vw,62px); line-height: 1.03; text-wrap: balance; }
.home-individual-lead { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.home-individual-features { margin: 28px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.home-individual-features li { min-width: 0; padding: 12px 16px 12px 12px; display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.92); border-radius: 24px 31px 26px 34px / 28px 23px 32px 25px; background: rgba(255,255,255,.62); box-shadow: inset 0 1px 0 white; }
.home-individual-features li > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,var(--brand-blue),var(--tiffany-deep)); color: white; font-size: 11px; font-weight: 900; box-shadow: 0 7px 13px rgba(38,50,74,.14); }
.home-individual-features p { margin: 0; }
.home-individual-features strong { display: block; color: var(--ink); font-size: 17px; line-height: 1.3; }
.home-individual-features small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: 14px; line-height: 1.4; }
.home-individual-actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; }
.home-individual-actions .button { flex: 0 0 auto; }
.home-individual-actions > small { max-width: 275px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.home-individual-visual { min-width: 0; margin: 0; }
.home-individual-photo { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 6%; box-shadow: 0 20px 42px rgba(38,50,74,.2); transform: rotate(1.2deg); }
.home-individual-photo > .product-photo { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.home-individual-photo > .floral-frame { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.home-individual-caption {
  position: relative;
  width: min(92%,430px);
  margin: 20px auto 0;
  padding: 18px 22px;
  text-align: left;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(81,103,199,.18);
  border-radius: 22px 22px 22px 8px;
  box-shadow: 0 14px 30px rgba(38,50,74,.14);
}
.home-individual-caption::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -8px;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,.94);
  border-top: 1px solid rgba(81,103,199,.18);
  border-left: 1px solid rgba(81,103,199,.18);
  transform: rotate(45deg);
}
.home-individual-caption strong,.home-individual-caption span { display: block; }
.home-individual-caption strong { color: var(--ink); font-size: 17px; }
.home-individual-caption span { margin-top: 3px; color: var(--ink-soft); font-size: 14px; line-height: 1.4; }

.home-notes-section { margin: 6px 0 8px; padding: 66px 0 76px; overflow: hidden; }
.notes-heading-plain {
  width: min(760px,92%);
  margin: 0 auto 34px;
  text-align: center;
}
.notes-heading-plain .eyebrow { margin-bottom: 9px; }
.notes-heading-plain h2 {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: clamp(38px,5vw,60px);
  line-height: 1.03;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255,255,255,.78), 0 10px 24px rgba(38,50,74,.13);
}
.notes-cloud-panel::before {
  -webkit-mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  mask-image: url("/assets/sloenka-cloud-shape-full.svg");
}
.notes-cloud-panel {
  --cloud-fill: linear-gradient(145deg,rgba(255,255,255,.97),rgba(226,247,250,.96) 52%,rgba(230,238,255,.96));
  --cloud-inset: -5px;
  width: 100%;
  min-height: 540px;
  margin: 0 auto;
  padding: 120px 0 106px;
}
.notes-cloud-panel::before { filter: drop-shadow(0 18px 30px rgba(38,50,74,.16)); }
.notes-cloud-grid {
  width: min(78%,920px);
  min-height: 314px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
}
.note-cloud {
  min-width: 0;
  min-height: 292px;
  padding: 14px 28px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.note-cloud + .note-cloud { border-left: 1px solid rgba(81,103,199,.18); }
.note-number { width: 40px; height: 30px; margin: 0 auto 13px; display: grid; place-items: center; border-radius: 999px; background: var(--brand-blue); color: white; font-size: 11px; font-weight: 900; box-shadow: 0 7px 13px rgba(38,50,74,.14); }
.note-cloud .eyebrow { margin-bottom: 7px; }
.note-cloud h3 { margin: 0; color: var(--brand-blue); font-size: clamp(23px,2.1vw,30px); line-height: 1.1; text-wrap: balance; }
.note-cloud > p:not(.eyebrow) { margin: 12px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.58; }
.note-delivery-button { margin-top: 18px; font-size: 14px; }

body.delivery-is-open { overflow: hidden; }
.delivery-modal { position: fixed; inset: 0; z-index: 420; padding: 16px; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.delivery-modal[hidden] { display: none; }
.delivery-modal.is-open { opacity: 1; pointer-events: auto; }
.delivery-scrim { position: absolute; inset: 0; border: 0; background: rgba(30,43,68,.5); backdrop-filter: blur(8px); cursor: default; }
.delivery-dialog-wrap { position: relative; width: min(1120px,calc(100vw - 32px)); height: min(700px,calc(100dvh - 32px)); min-height: min(520px,calc(100dvh - 32px)); }
.delivery-dialog-wrap > .custom-order-close { top: -6px; right: -6px; z-index: 3; background: rgba(255,255,255,.97); box-shadow: 0 10px 24px rgba(31,48,78,.24),0 0 0 5px rgba(255,255,255,.2); }
.delivery-dialog { --cloud-fill: linear-gradient(145deg,rgba(255,255,255,.99),rgba(225,247,250,.985) 58%,rgba(227,236,255,.98)); --cloud-inset: 0; width: 100%; height: 100%; overflow: hidden; transform: translateY(14px) scale(.97); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.delivery-dialog::before { inset: 8px; -webkit-mask-image: url("/assets/sloenka-dialog-cloud-safe.svg"); mask-image: url("/assets/sloenka-dialog-cloud-safe.svg"); filter: drop-shadow(0 22px 38px rgba(25,41,69,.28)); }
.delivery-modal.is-open .delivery-dialog { transform: translateY(0) scale(1); }
.delivery-dialog-content { position: relative; z-index: 1; height: 100%; padding: 70px 96px 64px; display: grid; grid-template-rows: auto 1fr auto; align-content: center; gap: 24px; }
.delivery-dialog-header { max-width: 760px; margin: 0 auto; text-align: center; }
.delivery-dialog-header h2 { margin: 5px 0 10px; color: var(--brand-blue); font-family: var(--font-display); font-size: clamp(38px,4.5vw,56px); line-height: 1.05; }
.delivery-dialog-header > p:last-child { max-width: 680px; margin: 0 auto; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.delivery-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.delivery-options article { min-width: 0; padding: 24px 22px; border: 1px solid rgba(255,255,255,.96); border-radius: 30px 40px 34px 44px / 38px 31px 43px 35px; background: rgba(255,255,255,.72); box-shadow: inset 0 1px 0 white,0 14px 28px rgba(38,50,74,.09); }
.delivery-options article > span { width: 42px; height: 30px; margin-bottom: 14px; display: grid; place-items: center; border-radius: 999px; background: linear-gradient(145deg,var(--brand-blue),var(--tiffany-deep)); color: white; font-size: 11px; font-weight: 900; }
.delivery-options h3 { margin: 0 0 9px; color: var(--ink); font-size: 20px; line-height: 1.22; }
.delivery-options p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.delivery-payment-note { max-width: 760px; margin: 0 auto; padding: 14px 22px; display: flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(255,255,255,.94); border-radius: 999px; background: rgba(255,255,255,.78); box-shadow: 0 10px 22px rgba(38,50,74,.1); text-align: center; }
.delivery-payment-note strong { color: var(--brand-blue); }
.delivery-payment-note span { color: var(--ink-soft); font-size: 14px; }

.daisy-editorial-a { width: 66px; height: 66px; top: 8%; right: 3%; animation-delay: -1.5s; }
.daisy-editorial-b { width: 42px; height: 42px; bottom: 8%; left: 2%; animation-delay: -4.2s; }
.daisy-process-a { width: 54px; height: 54px; top: 12%; left: 3%; animation-delay: -3s; }
.daisy-process-b { width: 38px; height: 38px; right: 4%; bottom: 12%; animation-delay: -.8s; }
.daisy-individual-a { width: 62px; height: 62px; top: 11%; right: 1%; animation-delay: -2.4s; }
.daisy-individual-b { width: 44px; height: 44px; left: 2%; bottom: 12%; animation-delay: -5s; }
.daisy-notes-a { width: 48px; height: 48px; right: 4%; top: 18%; animation-delay: -1.1s; }
.journey-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.journey-card,
.path-card,
.prep-card,
.step-card.cloud-surface {
  --cloud-fill: rgba(255,255,255,.86);
  --cloud-inset: -8px;
  min-width: 0;
  min-height: 265px;
  padding: 56px 40px 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.journey-card .number,
.step-card.cloud-surface .number { width: 42px; height: 42px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-weight: 900; }
.journey-card h3,
.prep-card h3 { margin: 0 0 9px; font-size: 20px; line-height: 1.3; }
.journey-card p,
.prep-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.path-card { min-height: 405px; padding: 80px 74px 62px; }
.path-card h3 { margin: 0 0 16px; max-width: 470px; color: var(--brand-blue); font-size: clamp(27px,3vw,39px); line-height: 1.12; letter-spacing: 0; }
.path-card p:not(.eyebrow) { max-width: 540px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.path-card .button { margin-top: 15px; }
.prep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.prep-card { min-height: 225px; padding: 60px 48px 40px; }
.content-card {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.content-card::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  background: rgba(255,255,255,.84);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 12px 24px rgba(38,50,74,.12));
}
.individual-hero { position: relative; }
.individual-contact {
  --cloud-fill: rgba(255,255,255,.87);
  --cloud-inset: -12px;
  min-height: 390px;
  padding: 86px 86px 66px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.individual-contact h2 { margin: 0 0 16px; color: var(--brand-blue); font-size: clamp(31px,4vw,50px); line-height: 1.1; letter-spacing: 0; }
.individual-contact p { max-width: 680px; color: var(--ink-soft); line-height: 1.65; }
.individual-fallback { max-width: 850px; margin: 0 auto; min-height: 330px; }

.messenger-icons { margin-top: 22px; display: flex; gap: 12px; }
.messenger-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(38,50,74,.2);
  transition: transform .2s ease, background .2s ease;
}
.messenger-icon:hover { transform: translateY(-3px) rotate(-3deg); background: var(--brand-blue); }
.messenger-icon svg { width: 27px; height: 27px; fill: currentColor; }

/* Unified cloud actions, centred information and tactile hover states */
.button,
.nav-order,
.benefit-list li {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: color .22s ease, transform .24s cubic-bezier(.2,.8,.2,1);
}
.button { --action-cloud-fill: var(--ink); }
.button.secondary { --action-cloud-fill: rgba(255,255,255,.96); color: var(--ink); }
.button.secondary { border: 0; box-shadow: none; }
.button.tiffany,
.nav-order { --action-cloud-fill: var(--ink); color: white; }
.benefit-list li {
  --action-cloud-fill: rgba(255,255,255,.84);
  padding: 12px 17px 9px;
  backdrop-filter: none;
}
.button::before,
.nav-order::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  background: var(--action-cloud-fill);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 9px 14px rgba(38,50,74,.16));
  transform: scale(1);
  transition: transform .24s cubic-bezier(.2,.8,.2,1), filter .24s ease, background .24s ease;
  pointer-events: none;
}
.button:hover,
.button:focus-visible,
.nav-order:hover,
.nav-order:focus-visible,
.benefit-list li:hover { transform: translateY(-4px) scale(1.025); }
.button:hover::before,
.button:focus-visible::before,
.nav-order:hover::before,
.nav-order:focus-visible::before,
.benefit-list li:hover::before {
  transform: scale(1.055);
  filter: drop-shadow(0 14px 20px rgba(38,50,74,.22));
}
.button:active,
.nav-order:active { transform: translateY(-1px) scale(.99); }
.button:disabled:hover,
.button.is-disabled:hover { transform: none; }

.search-trigger {
  color: var(--brand-blue);
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.search-trigger:hover,
.search-trigger:focus-visible {
  background: var(--brand-blue);
  color: white;
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 12px 22px rgba(81,103,199,.27);
}

.price-cloud,
.card-select { transition: color .22s ease, transform .24s cubic-bezier(.2,.8,.2,1); }
.price-cloud::before,
.card-select::before { transition: background .22s ease, filter .22s ease, transform .24s cubic-bezier(.2,.8,.2,1); }
.price-cloud:hover,
.card-select:hover { transform: translateY(-4px) scale(1.035); }
.price-cloud:hover::before,
.card-select:hover::before { transform: scale(1.045); filter: drop-shadow(0 14px 20px rgba(38,50,74,.2)); }
.color-option:hover { transform: translateY(-4px) scale(1.035); background: white; box-shadow: 0 10px 18px rgba(38,50,74,.14); }
.color-option:has(input:checked):hover { transform: translateY(-4px) scale(1.035); background: var(--ink); color: white; }
.color-swatch { transition: transform .22s ease, box-shadow .22s ease; }
.color-option:hover .color-swatch { transform: scale(1.12) rotate(5deg); box-shadow: 0 5px 10px rgba(38,50,74,.17), inset 0 2px 4px rgba(255,255,255,.55); }

.section-heading {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.section-heading > div { width: 100%; }
.section-heading p { margin-inline: auto; text-align: center; }
.page-hero { text-align: center; }
.page-hero h1,
.page-hero p { margin-left: auto; margin-right: auto; }
.page-hero .hero-actions {
  justify-content: center;
}
.value-card,
.step-card,
.journey-card,
.prep-card,
.path-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-card .number,
.step-card .number,
.journey-card .number { margin-left: auto; margin-right: auto; }
.value-card h3,
.step-card h3,
.journey-card h3,
.prep-card h3,
.path-card h3,
.content-card h2,
.contact-card h2,
.checkout-card h2,
.checkout-form h2 { width: 100%; text-align: center; }
.path-card p,
.content-card p { margin-left: auto; margin-right: auto; text-align: center; }
.path-card .button { margin-left: auto; margin-right: auto; }
.content-card { text-align: center; }
.content-card .hero-actions { justify-content: center; }
.detail-panel > .eyebrow,
.detail-panel h1,
.detail-price,
.detail-lead { text-align: center; }

/* Safe typography inside cloud and glass windows */
:where(
  .name-cloud,
  .value-card,
  .step-card,
  .journey-card,
  .prep-card,
  .path-card,
  .content-card,
  .contact-card,
  .individual-contact,
  .checkout-card,
  .checkout-form,
  .detail-panel,
  .search-panel,
  .footer-cloud,
  .faq-item,
  .cart-empty,
  .catalog-empty
) { min-width: 0; }

:where(
  .name-cloud,
  .value-card,
  .step-card,
  .journey-card,
  .prep-card,
  .path-card,
  .content-card,
  .contact-card,
  .individual-contact,
  .checkout-card,
  .checkout-form,
  .detail-panel,
  .search-panel,
  .footer-cloud,
  .faq-item,
  .cart-empty,
  .catalog-empty
) :is(h1, h2, h3, h4, p, li, summary) {
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: none;
}

:where(
  .name-cloud,
  .value-card,
  .step-card,
  .journey-card,
  .prep-card,
  .path-card,
  .content-card,
  .contact-card,
  .individual-contact,
  .checkout-card,
  .checkout-form,
  .detail-panel,
  .search-panel,
  .footer-cloud,
  .cart-empty,
  .catalog-empty
) :is(h1, h2, h3, h4) {
  text-wrap: balance;
  text-align: center;
  margin-inline: auto;
}

.name-cloud h3 { width: min(100%, 24ch); }
.value-card > :is(h3, p),
.step-card > :is(h3, p),
.journey-card > :is(h3, p),
.prep-card > :is(h3, p) { width: min(100%, 34ch); }
.path-card > :is(h3, p) { width: min(100%, 38ch); }
.content-card > :is(h2, p) { width: min(100%, 48ch); }
.contact-card > :is(h2, p) { width: min(100%, 40ch); }
.individual-contact > div { min-width: 0; }
.individual-contact > div > :is(h2, p) { max-width: min(100%, 44ch); }
.footer-cloud > :is(h2, p, nav) { width: min(100%, 32ch); }

.product-about-card {
  margin-top: 30px;
  padding: 54px 60px;
}
.product-about-card h2 { font-size: clamp(30px,3.6vw,44px); }
.product-about-card p { font-size: 15px; line-height: 1.7; }

/* Variant-aware cart */
.cart-item { grid-template-columns: 78px minmax(0,1fr) auto; }
.cart-item-content { min-width: 0; }
.cart-line-price { margin-top: 8px; display: block; font-size: 13px; }
.cart-item-controls { display: grid; justify-items: end; gap: 8px; }
.quantity-control { min-height: 35px; display: inline-grid; grid-template-columns: 34px 34px 34px; align-items: center; border-radius: 999px; background: var(--ink); color: white; overflow: hidden; }
.quantity-control button { height: 35px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.quantity-control button:disabled { opacity: .35; cursor: default; }
.quantity-control span { text-align: center; font-size: 12px; font-weight: 900; }
.checkout-count,
.form-hint-important { background: rgba(81,103,199,.14); }

/* A single informative footer plaque keeps the last screen calm and useful. */
.site-footer { position: relative; overflow: hidden; padding: 46px 20px 28px; }
.footer-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px,100%);
  margin: 0 auto;
  padding: 48px 52px 22px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 58px 76px 50px 82px / 68px 52px 76px 56px;
  background: linear-gradient(120deg,rgba(255,255,255,.88),rgba(224,247,250,.8) 48%,rgba(226,237,255,.84));
  box-shadow: inset 0 2px 1px rgba(255,255,255,.92),0 20px 45px rgba(38,50,74,.14);
  backdrop-filter: blur(22px) saturate(1.12);
}
.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center 64% / cover no-repeat;
  opacity: .22;
  pointer-events: none;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.18fr .72fr .95fr 1.15fr;
  align-items: stretch;
  gap: 0;
}
.footer-column {
  min-width: 0;
  padding: 10px 28px 16px;
  display: flex;
  flex-direction: column;
}
.footer-column + .footer-column { border-left: 1px solid rgba(81,103,199,.16); }
.footer-brand-column { padding-left: 0; }
.footer-brand-column .brand { width: fit-content; }
.footer-column h2 { margin: 4px 0 16px; color: var(--brand-blue); font-family: var(--font-body); font-size: 21px; line-height: 1.2; }
.footer-column p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.58; }
.footer-location { width: fit-content; margin-top: 17px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.96); border-radius: 999px; background: rgba(255,255,255,.7); color: var(--brand-blue); font-size: 12px; font-weight: 900; box-shadow: inset 0 1px 0 white; }
.footer-nav { display: grid; gap: 9px; }
.footer-nav a { width: fit-content; border-bottom: 1px solid transparent; color: var(--ink); font-size: 14px; }
.footer-nav a:hover { border-bottom-color: currentColor; }
.footer-facts { margin: 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.footer-facts li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.footer-facts li::before { content: ""; position: absolute; left: 0; top: .52em; width: 7px; height: 7px; border-radius: 50%; background: var(--tiffany-deep); box-shadow: 0 0 0 4px rgba(130,215,207,.2); }
.footer-individual-link { width: fit-content; margin-top: 14px; color: var(--brand-blue); font-family: var(--font-body); font-size: 14px; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.footer-order-column .messenger-icons { margin-top: 15px; }
.footer-order-column .messenger-icon { width: 43px; height: 43px; }
.footer-order-column .messenger-icon svg { width: 22px; height: 22px; }
.footer-bottom { position: relative; margin-top: 24px; padding-top: 17px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(81,103,199,.16); }
.footer-bottom p { margin: 0; color: rgba(38,50,74,.64); font-size: 12px; line-height: 1.4; }

/* First-screen review: live photography, tactile cloud actions and an inline order guide */
.hero-cloud-action {
  min-width: 205px;
  min-height: 64px;
  padding: 18px 30px 15px;
  font-size: 15px;
  letter-spacing: .01em;
}
.hero-cloud-action::before {
  inset: -8px -12px;
  -webkit-mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  filter:
    drop-shadow(0 5px 0 rgba(36,48,75,.16))
    drop-shadow(0 15px 18px rgba(38,50,74,.2))
    drop-shadow(0 0 15px rgba(130,215,207,.24));
}
.hero-cloud-catalog::before,
.hero-cloud-custom::before { background: var(--brand-blue); }
.button.secondary.hero-cloud-custom { color: white; }
.hero-cloud-action:hover::before,
.hero-cloud-action:focus-visible::before {
  filter:
    drop-shadow(0 6px 0 rgba(36,48,75,.14))
    drop-shadow(0 18px 24px rgba(38,50,74,.24))
    drop-shadow(0 0 22px rgba(130,215,207,.48));
}
.hero-live-main > .product-photo { object-position: 53% 67%; }
.hero-live-buttons > .product-photo { object-position: 55% 42%; }
.hero-live-earrings > .product-photo { object-position: 55% 43%; }
.hero-3d-product > .product-photo { object-position: center; }
.hero-3d-main > .product-photo { object-position: center; }
.hero-live-bracelets-small > .product-photo { object-position: 53% 69%; }

/* Keep the search affordance, but remove the unrelated white disc beside the cart. */
.search-trigger,
.search-trigger:hover,
.search-trigger:focus-visible {
  border: 0;
  background: transparent !important;
  box-shadow: none;
}
.search-trigger:hover { color: var(--tiffany-deep); transform: translateY(-2px) scale(1.08); }
.search-trigger:focus-visible { color: var(--brand-blue); outline: 2px solid rgba(81,103,199,.45); outline-offset: 2px; }
.cart-count[hidden] { display: none; }
.nav-order::before {
  inset: -6px -10px;
  -webkit-mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  filter:
    drop-shadow(0 4px 0 rgba(25,35,56,.18))
    drop-shadow(0 10px 15px rgba(38,50,74,.2));
}

body.custom-order-is-open { overflow: hidden; }
.custom-order-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  padding: 9px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.custom-order-modal[hidden] { display: none; }
.custom-order-modal.is-open { opacity: 1; pointer-events: auto; }
.custom-order-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30,43,68,.48);
  backdrop-filter: blur(8px);
  cursor: default;
}
.custom-order-cloud {
  --cloud-fill: linear-gradient(145deg, rgba(255,255,255,.985), rgba(226,246,255,.975) 56%, rgba(220,247,242,.98));
  --cloud-inset: 0;
  position: relative;
  width: min(1320px, calc(100vw - 8px));
  min-height: min(860px, calc(100dvh - 8px));
  max-height: calc(100dvh - 8px);
  padding: clamp(94px, 8vw, 118px) clamp(100px, 10vw, 152px) clamp(86px, 8vw, 112px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(16px) scale(.96);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.custom-order-cloud::before {
  -webkit-mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  mask-image: url("/assets/sloenka-cloud-shape-full.svg");
  filter:
    drop-shadow(0 8px 0 rgba(255,255,255,.54))
    drop-shadow(0 25px 44px rgba(25,41,69,.28))
    drop-shadow(0 0 26px rgba(130,215,207,.2));
}
.custom-order-modal.is-open .custom-order-cloud { transform: translateY(0) scale(1); }
.custom-order-close {
  position: absolute;
  top: clamp(58px, 6vw, 78px);
  right: clamp(142px, 14vw, 212px);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid rgba(38,50,74,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  color: var(--ink);
  font: 400 31px/1 var(--font-body);
  box-shadow: 0 9px 19px rgba(38,50,74,.13);
  cursor: pointer;
}
.custom-order-close:hover,
.custom-order-close:focus-visible { background: white; outline: 3px solid rgba(130,215,207,.45); }
.custom-order-header { max-width: 900px; margin: 0 auto 38px; text-align: center; }
.custom-order-header h2 {
  margin: 8px 0 14px;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.08;
}
.custom-order-header > p:last-child { max-width: 740px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.custom-order-steps {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 38px);
  list-style: none;
}
.custom-order-steps::before { display: none; }
.custom-order-steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 16px 16px 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 32px 42px 35px 46px / 39px 32px 44px 36px;
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 1px 0 white, 0 14px 28px rgba(38,50,74,.09);
}
.custom-order-step-photo {
  width: 100%;
  height: 152px;
  display: block;
  overflow: hidden;
  border-radius: 22px 30px 24px 34px / 29px 22px 31px 25px;
}
.custom-order-step-photo img { width: 100%; height: 100%; object-fit: cover; }
.custom-order-steps li:nth-child(1) .custom-order-step-photo img { object-position: 50% 47%; }
.custom-order-steps li:nth-child(2) .custom-order-step-photo img { object-position: 55% 36%; }
.custom-order-steps li:nth-child(3) .custom-order-step-photo img { object-position: 53% 70%; }
.custom-order-step-number {
  width: 43px;
  height: 43px;
  margin: 14px auto 12px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.94);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-blue), var(--tiffany-deep));
  color: white;
  font: 900 12px/1 var(--font-body);
  box-shadow: 0 8px 15px rgba(38,50,74,.17);
}
.custom-order-steps h3 { margin: 0 0 9px; color: var(--ink); font-size: 20px; line-height: 1.25; }
.custom-order-steps p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.58; }
.custom-order-footer { margin: 30px auto 0; max-width: 960px; padding-inline: 22px; text-align: center; }
.custom-order-footer p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.55; }
.custom-order-footer span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

/* Rebuilt dialog: every part stays in normal document flow, with no overlaps. */
.custom-order-dialog-wrap {
  position: relative;
  width: min(1280px, calc(100vw - 32px));
  height: min(820px, calc(100dvh - 32px));
  min-height: min(500px, calc(100dvh - 32px));
}
.custom-order-dialog-v2 {
  --cloud-fill: linear-gradient(145deg, rgba(255,255,255,.99), rgba(226,246,255,.985) 58%, rgba(220,247,242,.985));
  --cloud-inset: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  transform: translateY(14px) scale(.97);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.custom-order-dialog-wrap > .custom-order-close {
  top: -6px;
  right: -6px;
  z-index: 3;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(31,48,78,.24), 0 0 0 5px rgba(255,255,255,.2);
}
.custom-order-dialog-v2::before {
  inset: 8px;
  -webkit-mask-image: url("/assets/sloenka-dialog-cloud-safe.svg?v=3");
  mask-image: url("/assets/sloenka-dialog-cloud-safe.svg?v=3");
  transform: none;
  filter:
    drop-shadow(0 8px 0 rgba(255,255,255,.55))
    drop-shadow(0 26px 46px rgba(25,41,69,.3))
    drop-shadow(0 0 30px rgba(130,215,207,.22));
}
.custom-order-modal.is-open .custom-order-dialog-v2 { transform: translateY(0) scale(1); }
.custom-order-dialog-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(70px, 8vh, 94px) clamp(96px, 10vw, 146px) clamp(62px, 7vh, 82px);
  display: grid;
  grid-template-rows: auto minmax(max-content, 1fr) auto;
  align-content: stretch;
  gap: clamp(18px, 2.4vh, 28px);
  overflow: hidden;
}
.custom-order-dialog-header { max-width: 880px; margin: 0 auto; text-align: center; }
.custom-order-dialog-header .eyebrow { margin-bottom: 8px; }
.custom-order-dialog-header h2 {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: clamp(36px, 4.1vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}
.custom-order-dialog-header > p:last-child {
  max-width: 740px;
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.custom-order-guide {
  width: min(86%, 960px);
  height: 100%;
  min-height: max-content;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2.3vw, 30px);
  list-style: none;
}
.custom-order-guide li {
  height: 100%;
  min-width: 0;
  padding: 14px 14px 20px;
  display: grid;
  grid-template-rows: minmax(94px, 1fr) auto;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 30px 40px 34px 44px / 38px 31px 43px 35px;
  background: rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 white, 0 14px 28px rgba(38,50,74,.09);
}
.custom-order-guide-icon {
  --step-accent: #5167c7;
  position: relative;
  width: clamp(92px, 14vh, 138px);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 42% 58% 54% 46% / 48% 42% 58% 52%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.98) 0 9%, transparent 10%),
    radial-gradient(circle at 75% 78%, color-mix(in srgb, var(--step-accent) 20%, transparent) 0 8%, transparent 9%),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(210,244,250,.8) 55%, rgba(215,226,255,.9));
  color: var(--step-accent);
  box-shadow: inset 0 1px 0 white, 0 14px 26px rgba(38,50,74,.13), 0 0 24px rgba(130,215,207,.2);
}
.custom-order-guide-icon::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid color-mix(in srgb, var(--step-accent) 24%, transparent);
  border-radius: 55% 45% 43% 57% / 46% 57% 43% 54%;
}
.custom-order-guide-icon svg {
  position: relative;
  z-index: 1;
  width: 62%;
  height: 62%;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.custom-order-guide-icon-details { --step-accent: #2f96ad; }
.custom-order-guide-icon-estimate { --step-accent: #3f68b8; }
.custom-order-guide-copy { min-width: 0; text-align: center; }
.custom-order-guide-number {
  width: 42px;
  height: 30px;
  margin: 0 auto 9px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-blue), var(--tiffany-deep));
  color: white;
  font: 900 12px/1 var(--font-body);
  box-shadow: 0 7px 13px rgba(38,50,74,.15);
}
.custom-order-guide h3 { margin: 0 0 7px; color: var(--ink); font-size: 19px; line-height: 1.25; }
.custom-order-guide p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.48; }
.custom-order-capabilities {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}
.custom-order-capabilities strong { color: var(--ink); }
.custom-order-contact {
  width: min(82%, 800px);
  max-width: none;
  margin: 0 auto 18px;
  padding: 11px 13px 11px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 2px solid rgba(255,255,255,.96);
  border-radius: 34px 44px 38px 48px / 40px 34px 46px 37px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(225,247,250,.92));
  box-shadow: inset 0 1px 0 white, 0 9px 0 rgba(81,103,199,.12), 0 17px 30px rgba(38,50,74,.17), 0 0 24px rgba(130,215,207,.28);
  text-align: left;
}
.custom-order-contact p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.3; }
.custom-order-contact p strong { display: block; font-size: 16px; }
.custom-order-contact p > span:last-child { display: block; margin-top: 3px; color: var(--ink-soft); font-size: 12px; }
.custom-order-contact-kicker { display: block; margin-bottom: 2px; color: var(--brand-blue); font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.custom-order-messengers { display: flex; align-items: center; gap: 8px; }
.custom-order-messenger {
  min-width: 112px;
  min-height: 46px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-blue), var(--ink));
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(38,50,74,.2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.custom-order-messenger.telegram { background: linear-gradient(145deg, #42b9e9, #3979c8); }
.custom-order-messenger.vk { background: linear-gradient(145deg, #5b8fda, #4169b7); }
.custom-order-messenger:hover,
.custom-order-messenger:focus-visible { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 12px 22px rgba(38,50,74,.25); outline: 3px solid rgba(130,215,207,.4); }
.custom-order-messenger svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }

@media (max-height: 820px) and (min-width: 621px) {
  .custom-order-dialog-content { padding: 46px 76px 40px; gap: 12px; }
  .custom-order-dialog-header .eyebrow { margin-bottom: 4px; font-size: 11px; }
  .custom-order-dialog-header h2 { font-size: clamp(30px, 4.4vw, 39px); }
  .custom-order-dialog-header > p:last-child { margin-top: 6px; font-size: 12px; line-height: 1.35; }
  .custom-order-guide { width: min(88%, 900px); gap: 14px; }
  .custom-order-guide li { padding: 9px 9px 12px; grid-template-rows: minmax(72px, 1fr) auto; gap: 7px; }
  .custom-order-guide-icon { width: clamp(72px, 15vh, 108px); }
  .custom-order-guide-number { width: 37px; height: 24px; margin-bottom: 5px; font-size: 10px; }
  .custom-order-guide h3 { margin-bottom: 4px; font-size: 16px; }
  .custom-order-guide p { font-size: 12px; line-height: 1.35; }
  .custom-order-capabilities { padding: 8px 18px; font-size: 11px; }
  .custom-order-contact { width: min(84%, 720px); padding: 8px 10px 8px 18px; gap: 10px; }
  .custom-order-contact p { font-size: 12px; }
  .custom-order-contact p strong { font-size: 14px; }
  .custom-order-contact p > span:last-child,
  .custom-order-contact-kicker { font-size: 12px; }
  .custom-order-messenger { min-width: 98px; min-height: 40px; padding: 7px 10px; }
  .custom-order-dialog-wrap > .custom-order-close { top: -6px; right: -6px; }
}

@media (max-width: 620px) {
  .custom-order-dialog-wrap {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    min-height: 0;
  }
  .custom-order-dialog-v2 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--cloud-fill);
    border-radius: 48px 62px 54px 66px / 59px 47px 63px 51px;
  }
  .custom-order-dialog-v2::before {
    display: none;
  }
  .custom-order-dialog-content { height: 100%; min-height: 0; padding: 46px 18px 28px; display: grid; grid-template-rows: auto minmax(0,1fr) auto; gap: 10px; overflow: hidden; }
  .custom-order-dialog-header .eyebrow { margin-bottom: 3px; font-size: 10px; }
  .custom-order-dialog-header h2 { font-size: clamp(24px, 7.5vw, 32px); overflow-wrap: anywhere; }
  .custom-order-guide { width: 100%; height: 100%; min-height: 0; margin: 0; grid-template-columns: 1fr; grid-template-rows: repeat(3,minmax(0,1fr)); gap: 8px; }
  .custom-order-guide li { min-height: 0; padding: 8px 10px; grid-template-columns: 58px minmax(0, 1fr); grid-template-rows: 1fr; align-items: center; gap: 10px; }
  .custom-order-guide-icon { width: 54px; }
  .custom-order-guide-copy { text-align: left; }
  .custom-order-guide-number { width: 31px; height: 21px; margin: 0 0 4px; font-size: 9px; }
  .custom-order-guide h3 { margin-bottom: 2px; font-size: 15px; }
  .custom-order-guide p { font-size: 12px; line-height: 1.25; }
  .custom-order-capabilities { margin-top: 18px; border-radius: 30px; }
  .custom-order-contact { width: 100%; margin: 0 auto 8px; padding: 10px; grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .custom-order-contact p { font-size: 12px; line-height: 1.2; }
  .custom-order-contact p strong { font-size: 15px; }
  .custom-order-contact p > span:last-child { font-size: 11px; }
  .custom-order-contact-kicker { font-size: 10px; }
  .custom-order-messengers { width: 100%; }
  .custom-order-messenger { flex: 1 1 0; min-width: 0; min-height: 38px; padding: 6px 8px; }
  .custom-order-dialog-wrap > .custom-order-close { top: -4px; right: -4px; }
}

@media (max-height: 560px) and (min-width: 621px) {
  .custom-order-dialog-content { padding: 28px 64px 24px; gap: 8px; }
  .custom-order-dialog-header .eyebrow { display: none; }
  .custom-order-dialog-header h2 { font-size: clamp(24px, 3.5vw, 30px); line-height: 1.02; }
  .custom-order-guide { min-height: 0; gap: 10px; }
  .custom-order-guide li { min-height: 0; padding: 7px 8px; grid-template-rows: minmax(48px,1fr) auto; gap: 4px; }
  .custom-order-guide-icon { width: 54px; }
  .custom-order-guide-number { display: none; }
  .custom-order-guide h3 { margin-bottom: 2px; font-size: 14px; }
  .custom-order-guide p { font-size: 11px; line-height: 1.18; }
  .custom-order-contact { margin-bottom: 5px; padding: 7px 9px 7px 14px; }
  .custom-order-contact-kicker { display: none; }
  .custom-order-contact p strong { font-size: 14px; }
  .custom-order-contact p > span:last-child { font-size: 10px; }
  .custom-order-messenger { min-height: 34px; font-size: 11px; }
}

@media (max-width: 620px) and (max-height: 700px) {
  .custom-order-dialog-content { padding: 34px 15px 22px; gap: 7px; }
  .custom-order-dialog-header .eyebrow { display: none; }
  .custom-order-dialog-header h2 { font-size: clamp(21px, 6.7vw, 27px); line-height: 1.02; }
  .custom-order-guide { gap: 6px; }
  .custom-order-guide li { padding: 6px 8px; grid-template-columns: 48px minmax(0,1fr); gap: 8px; }
  .custom-order-guide-icon { width: 44px; }
  .custom-order-guide-number { display: none; }
  .custom-order-guide h3 { font-size: 14px; }
  .custom-order-guide p { font-size: 11px; line-height: 1.18; }
  .custom-order-contact { margin-bottom: 5px; padding: 7px 9px; gap: 5px; }
  .custom-order-contact-kicker { display: none; }
  .custom-order-contact p strong { font-size: 14px; }
  .custom-order-contact p > span:last-child { font-size: 10px; }
  .custom-order-messenger { min-height: 33px; font-size: 11px; }
  .custom-order-messenger svg { width: 17px; height: 17px; }
}

/* Individual-order window: a compact Sloenka workshop blueprint. */
.custom-order-blueprint-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(58px, 7.2vh, 82px) clamp(78px, 8vw, 118px) clamp(50px, 6vh, 70px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(13px, 1.9vh, 21px);
  overflow: hidden;
}
.custom-order-blueprint-header {
  width: min(830px, 84%);
  margin: 0 auto;
  text-align: center;
}
.custom-order-blueprint-header .eyebrow {
  margin-bottom: 5px;
  color: var(--ink);
}
.custom-order-blueprint-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  text-wrap: balance;
}
.custom-order-blueprint-header > p:last-child {
  margin: 8px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
.custom-order-blueprint-board {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(210px, 1.13fr) minmax(0, .98fr);
  overflow: hidden;
  border: 1px solid rgba(81,103,199,.16);
  border-radius: 32px 42px 35px 46px / 39px 32px 44px 36px;
  background-color: rgba(231,247,252,.88);
  background-image:
    linear-gradient(rgba(81,103,199,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81,103,199,.075) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.96), rgba(226,246,251,.76));
  background-size: 22px 22px, 22px 22px, 100% 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), inset 0 -14px 30px rgba(81,103,199,.04);
}
.custom-order-blueprint-board::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center / cover no-repeat;
  opacity: .075;
  pointer-events: none;
}
.custom-order-blueprint-side,
.custom-order-blueprint-core { position: relative; z-index: 1; min-width: 0; }
.custom-order-blueprint-side {
  padding: 12px;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 7px;
}
.custom-order-blueprint-side article {
  min-width: 0;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.77);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.78);
}
.custom-order-blueprint-inputs article { border-radius: 20px 8px 8px 20px; }
.custom-order-blueprint-results article { border-radius: 8px 20px 20px 8px; }
.custom-order-blueprint-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 7px 15px rgba(38,50,74,.15), inset 0 1px 0 rgba(255,255,255,.35);
}
.custom-order-blueprint-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.custom-order-blueprint-side p,
.custom-order-blueprint-contact p { margin: 0; }
.custom-order-blueprint-side strong,
.custom-order-blueprint-side span { display: block; color: var(--ink); }
.custom-order-blueprint-side strong { font-size: 14px; line-height: 1.2; }
.custom-order-blueprint-side p > span { margin-top: 3px; color: var(--ink-soft); font-size: 11px; line-height: 1.3; }
.custom-order-blueprint-core {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-inline: 1px solid rgba(81,103,199,.15);
}
.custom-order-blueprint-core::before,
.custom-order-blueprint-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(81,103,199,.24);
  border-radius: 50%;
  pointer-events: none;
}
.custom-order-blueprint-core::before { width: 73%; aspect-ratio: 1; }
.custom-order-blueprint-core::after { width: 49%; aspect-ratio: 1; }
.custom-order-blueprint-orbit {
  position: relative;
  z-index: 1;
  width: min(70%, 184px);
  aspect-ratio: 1;
  padding: 13%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.98) 0 47%, rgba(130,215,207,.2) 48% 67%, rgba(81,103,199,.08) 68% 72%, transparent 73%);
}
.custom-order-blueprint-piece {
  position: relative;
  width: 98px;
  height: 116px;
  padding: 18px 10px 12px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 45% 55% 48% 52% / 52% 42% 58% 48%;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(206,239,248,.9));
  box-shadow: inset 10px 10px 18px rgba(255,255,255,.76), 0 13px 26px rgba(38,50,74,.16);
  overflow: hidden;
}
.custom-order-blueprint-piece > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .19;
}
.custom-order-blueprint-piece > svg {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 64px;
  stroke: var(--brand-blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.custom-order-blueprint-piece > strong {
  position: relative;
  z-index: 1;
  margin-top: -3px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}
.custom-order-blueprint-tag {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 10px;
  line-height: 1;
  box-shadow: 0 5px 13px rgba(38,50,74,.1);
}
.custom-order-blueprint-tag::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(81,103,199,.35);
}
.tag-idea { top: 18px; left: 12px; }
.tag-idea::after { width: 42px; left: 100%; top: 70%; transform: rotate(23deg); transform-origin: left center; }
.tag-details { top: 18px; right: 12px; }
.tag-details::after { width: 42px; right: 100%; top: 70%; transform: rotate(-23deg); transform-origin: right center; }
.tag-result { bottom: 18px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.tag-result::after { width: 1px; height: 32px; left: 50%; bottom: 100%; }
.custom-order-blueprint-contact {
  width: min(850px, 84%);
  margin: 0 auto;
  padding: 10px 11px 10px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 25px 33px 28px 36px / 30px 25px 35px 27px;
  background: linear-gradient(90deg, rgba(225,246,252,.97), rgba(255,255,255,.95));
  box-shadow: inset 0 1px 0 white, inset 0 -9px 20px rgba(81,103,199,.045);
}
.custom-order-blueprint-contact p > span,
.custom-order-blueprint-contact p > strong { display: block; color: var(--ink); }
.custom-order-blueprint-contact p > span { font-size: 11px; }
.custom-order-blueprint-contact p > strong { margin-top: 2px; font-size: 16px; }
.custom-order-blueprint-contact .custom-order-messengers { margin: 0; }
.custom-order-blueprint-contact .custom-order-messenger,
.custom-order-blueprint-contact .custom-order-messenger.telegram,
.custom-order-blueprint-contact .custom-order-messenger.vk {
  min-height: 42px;
  background: var(--brand-blue);
  box-shadow: 0 7px 15px rgba(38,50,74,.16);
}

@media (max-height: 820px) and (min-width: 621px) {
  .custom-order-blueprint-content { padding: 43px 70px 37px; gap: 10px; }
  .custom-order-blueprint-header .eyebrow { margin-bottom: 3px; font-size: 10px; }
  .custom-order-blueprint-header h2 { font-size: clamp(29px, 3.8vw, 39px); }
  .custom-order-blueprint-header > p:last-child { margin-top: 4px; font-size: 12px; }
  .custom-order-blueprint-side { padding: 9px; gap: 5px; }
  .custom-order-blueprint-side article { padding: 6px 8px; grid-template-columns: 34px minmax(0,1fr); gap: 7px; }
  .custom-order-blueprint-icon { width: 34px; height: 34px; }
  .custom-order-blueprint-icon svg { width: 18px; height: 18px; }
  .custom-order-blueprint-side strong { font-size: 12px; }
  .custom-order-blueprint-side p > span { font-size: 10px; }
  .custom-order-blueprint-orbit { width: min(64%, 154px); }
  .custom-order-blueprint-piece { width: 78px; height: 92px; }
  .custom-order-blueprint-piece > svg { width: 43px; height: 50px; }
  .custom-order-blueprint-contact { padding-block: 7px; }
  .custom-order-blueprint-contact p > strong { font-size: 14px; }
  .custom-order-blueprint-contact .custom-order-messenger { min-height: 36px; }
}

@media (max-width: 760px) and (min-width: 621px) {
  .custom-order-blueprint-content { padding-inline: 47px; }
  .custom-order-blueprint-header,
  .custom-order-blueprint-contact { width: 92%; }
  .custom-order-blueprint-board { grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr); }
  .custom-order-blueprint-side article { grid-template-columns: 30px minmax(0, 1fr); padding-inline: 6px; }
  .custom-order-blueprint-icon { width: 30px; height: 30px; }
  .custom-order-blueprint-side strong { font-size: 11px; }
  .custom-order-blueprint-side p > span { font-size: 9px; }
}

@media (max-width: 620px) {
  .custom-order-blueprint-content {
    padding: 39px 14px 22px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 8px;
  }
  .custom-order-blueprint-header { width: 100%; padding-inline: 12px; }
  .custom-order-blueprint-header .eyebrow { margin-bottom: 2px; font-size: 9px; }
  .custom-order-blueprint-header h2 { font-size: clamp(22px, 7vw, 29px); line-height: 1.02; }
  .custom-order-blueprint-header > p:last-child { margin-top: 4px; font-size: 10px; line-height: 1.25; }
  .custom-order-blueprint-board {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(105px, .85fr) minmax(0, 1fr) minmax(0, 1fr);
    border-radius: 26px 33px 28px 36px / 31px 26px 35px 28px;
    background-size: 18px 18px, 18px 18px, 100% 100%;
  }
  .custom-order-blueprint-core {
    grid-row: 1;
    border-inline: 0;
    border-bottom: 1px solid rgba(81,103,199,.15);
  }
  .custom-order-blueprint-core::before { width: 132px; }
  .custom-order-blueprint-core::after { width: 88px; }
  .custom-order-blueprint-orbit { width: 102px; }
  .custom-order-blueprint-piece { width: 56px; height: 66px; padding: 7px 6px; }
  .custom-order-blueprint-piece > svg { width: 30px; height: 34px; stroke-width: 3.6; }
  .custom-order-blueprint-piece > strong { font-size: 8px; }
  .custom-order-blueprint-side {
    padding: 5px 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 5px;
  }
  .custom-order-blueprint-side article {
    padding: 6px 4px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 4px;
    border-radius: 14px;
    text-align: center;
  }
  .custom-order-blueprint-icon { width: 28px; height: 28px; }
  .custom-order-blueprint-icon svg { width: 15px; height: 15px; }
  .custom-order-blueprint-side strong { font-size: 10px; line-height: 1.08; }
  .custom-order-blueprint-side p > span { margin-top: 2px; font-size: 8px; line-height: 1.12; }
  .custom-order-blueprint-tag { padding: 4px 7px; font-size: 8px; }
  .tag-idea { top: 8px; left: 8px; }
  .tag-details { top: 8px; right: 8px; }
  .tag-result { bottom: 7px; }
  .tag-idea::after,
  .tag-details::after { width: 22px; }
  .tag-result::after { height: 14px; }
  .custom-order-blueprint-contact {
    width: 100%;
    padding: 7px 8px;
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }
  .custom-order-blueprint-contact p > span { font-size: 9px; }
  .custom-order-blueprint-contact p > strong { font-size: 13px; }
  .custom-order-blueprint-contact .custom-order-messengers { width: 100%; }
  .custom-order-blueprint-contact .custom-order-messenger { flex: 1 1 0; min-width: 0; min-height: 34px; padding: 6px 8px; font-size: 10px; }
  .custom-order-dialog-wrap > .custom-order-close { top: -3px; right: -3px; }
}

@media (max-width: 620px) and (max-height: 700px) {
  .custom-order-blueprint-content { padding: 32px 11px 16px; gap: 5px; }
  .custom-order-blueprint-header .eyebrow { display: none; }
  .custom-order-blueprint-header h2 { font-size: clamp(19px, 6vw, 25px); }
  .custom-order-blueprint-header > p:last-child { display: none; }
  .custom-order-blueprint-board { grid-template-rows: minmax(86px, .7fr) repeat(2, minmax(0, 1fr)); }
  .custom-order-blueprint-core::before { width: 104px; }
  .custom-order-blueprint-core::after { width: 70px; }
  .custom-order-blueprint-orbit { width: 82px; }
  .custom-order-blueprint-piece { width: 46px; height: 54px; }
  .custom-order-blueprint-piece > svg { width: 24px; height: 28px; }
  .custom-order-blueprint-side p > span { display: none; }
  .custom-order-blueprint-side strong { font-size: 9px; }
  .custom-order-blueprint-contact { padding-block: 5px; gap: 4px; }
  .custom-order-blueprint-contact p > span { display: none; }
  .custom-order-blueprint-contact p > strong { font-size: 11px; }
  .custom-order-blueprint-contact .custom-order-messenger { min-height: 30px; }
}

@media (max-width: 1050px) {
  .nav-links a { padding-inline: 9px; font-size: 13px; }
  .nav-shell { gap: 10px; }
  .brand-logo-nav { width: 150px; }
  .hero { grid-template-columns: 1fr 410px; gap: 24px; }
  .hero-showcase { min-height: 500px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .footer-cloud { padding-inline: 36px; }
  .footer-panel { padding-inline: 38px; }
  .footer-main { grid-template-columns: 1.05fr .78fr .92fr 1.08fr; }
  .footer-column { padding-inline: 20px; }
  .custom-order-cloud { padding: 86px 76px 78px; }
  .custom-order-close { top: 52px; right: 104px; }
  .custom-order-step-photo { height: 128px; }
}

@media (max-width: 860px) {
  .site-header { padding: 10px 12px 0; }
  .nav-shell { min-height: 62px; padding: 8px 10px 8px 15px; flex-wrap: wrap; gap: 8px; }
  .brand-logo-nav { width: 140px; }
  .menu-toggle { display: block; }
  .nav-order { width: 50px; height: 44px; padding: 0 5px; display: inline-flex; justify-content: center; gap: 4px; }
  .cart-label { display: none; }
  .cart-count { min-width: 20px; height: 20px; padding: 0 5px; }
  .search-trigger { width: 42px; height: 42px; }
  .nav-links {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 6px 0 8px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 14px; text-align: center; }
  .page-shell { width: min(100% - 28px, 760px); }
  .hero { min-height: auto; padding-top: 64px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-showcase { min-height: 520px; max-width: 580px; width: 100%; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .category-browser { grid-template-columns: 1fr; gap: 0; filter: drop-shadow(0 18px 34px rgba(38,50,74,.13)); }
  .category-stage { width: 100%; min-height: 0; aspect-ratio: 1 / 1; justify-self: center; border-left: 1px solid rgba(255,255,255,.96); border-radius: 0 0 28px 28px; }
  .category-tabs { width: 100%; margin: 0; padding-block: 0; }
  .category-tab { border-right: 1px solid rgba(255,255,255,.96); border-radius: 22px; }
  .category-tab:last-child { border-radius: 22px 22px 0 0; }
  .category-preview-panel > .product-photo { border-radius: 0 0 27px 27px; }
  .value-grid,.steps-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-panel { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .story-grid,.contact-grid { grid-template-columns: 1fr; }
  .story-photo { min-height: 0; }
  .catalog-controls { align-items: stretch; flex-direction: column; }
  .catalog-search { width: 100%; min-width: 0; margin: 0; }
  .search-panel { width: min(92vw,500px); min-width: 0; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 380px; }
  .prep-grid { grid-template-columns: 1fr 1fr; }
  .individual-contact { grid-template-columns: 1fr; padding: 74px 64px 58px; }
  .footer-shell { width: min(650px,100%); grid-template-columns: 1fr; }
  .footer-cloud { min-height: 250px; }
  .footer-panel { width: min(650px,100%); padding: 42px 38px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-column { padding: 24px 26px; }
  .footer-column + .footer-column { border-left: 0; }
  .footer-column:nth-child(even) { border-left: 1px solid rgba(81,103,199,.16); }
  .footer-column:nth-child(n+3) { border-top: 1px solid rgba(81,103,199,.16); }
  .footer-brand-column { padding-left: 26px; }
  .custom-order-modal { padding: 6px; }
  .custom-order-cloud { width: calc(100vw - 8px); padding: 78px 48px 70px; }
  .custom-order-close { top: 45px; right: 66px; }
  .custom-order-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .custom-order-step-photo { height: 116px; }
  .custom-order-step-number { margin-top: 11px; }
  .custom-order-steps h3 { font-size: 17px; }
  .custom-order-steps p { font-size: 12px; }
}

@media (max-width: 560px) {
  body { background-attachment: scroll; }
  .nav-shell { gap: 6px; }
  .nav-shell .brand { padding: 4px 6px; }
  .page-shell { width: min(100% - 20px, 520px); }
  .section { padding: 58px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .hero { padding: 50px 0 56px; }
  .hero-intro { padding: 28px 0 30px; }
  .page-hero h1 { max-width: 100%; font-size: clamp(38px, 12vw, 56px); line-height: 1.02; overflow-wrap: break-word; hyphens: none; }
  .hero-logo { width: 100%; }
  .hero-copy { margin-top: 22px; font-size: 19px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .popular-catalog-link { width: min(100%, 290px); }
  .home-category-section { padding: 42px 0 58px; }
  .category-heading { margin-bottom: 26px; }
  .category-tabs { gap: 9px; }
  .category-tab { min-height: 72px; padding: 14px 18px; border-radius: 19px; }
  .category-tab:last-child { border-radius: 19px 19px 0 0; }
  .category-tab:hover,
  .category-tab:focus-visible,
  .category-tab.is-active { transform: translateX(0); }
  .category-tab-number { width: 36px; height: 36px; font-size: 13px; }
  .category-tab-copy strong { font-size: 16px; }
  .category-tab-copy small { display: none; }
  .category-tab-arrow { font-size: 27px; }
  .category-tab::after { inset: 3px 0; width: auto; background-size: 100% auto; }
  .category-preview-label { left: 5%; bottom: 5%; min-width: 0; padding: 14px 19px 12px; }
  .category-preview-label strong { font-size: 16px; }
  .hero-cloud-action { min-height: 60px; }
  .custom-order-modal { padding: 6px; }
  .custom-order-cloud {
    width: 98vw;
    max-height: 96dvh;
    padding: 70px 28px 62px;
  }
  .custom-order-cloud::before {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 46px 58px 52px 61px / 54px 45px 60px 49px;
  }
  .custom-order-close { top: 27px; right: 29px; }
  .custom-order-header { margin-bottom: 24px; }
  .custom-order-header h2 { padding-inline: 8px; font-size: clamp(31px, 10vw, 43px); }
  .custom-order-header > p:last-child { font-size: 14px; }
  .custom-order-step-photo { height: 112px; }
  .custom-order-steps { grid-template-columns: 1fr; gap: 14px; }
  .custom-order-steps::before { display: none; }
  .custom-order-steps h3 { font-size: 18px; }
  .custom-order-steps p { font-size: 13px; }
  .hero-showcase { min-height: 410px; }
  .hero-photo.main { inset: auto; width: min(78%, 360px); height: auto; left: 50%; top: 50%; }
  .hero-photo.small-a { width: 132px; height: auto; }
  .hero-photo.small-b { width: 128px; height: auto; right: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { padding: 0 0 8px; }
  .product-card-body { margin: 7px 1px 0; padding: 0 2px 2px; }
  .name-cloud { min-height: 150px; padding: 36px 12px 31px; }
  .product-card h3 { font-size: 13px; line-height: 1.28; }
  .card-bottom { align-items: start; flex-direction: column; padding-top: 9px; }
  .price-cloud { width: 100%; min-height: 46px; padding: 14px 11px 8px; font-size: 14px; }
  .card-select { width: 100%; min-height: 46px; padding: 14px 11px 8px; }
  .value-grid,.steps-grid { grid-template-columns: 1fr; }
  .journey-grid,.prep-grid { grid-template-columns: 1fr; }
  .value-card,.step-card { padding: 23px; }
  .value-card.cloud-surface { min-height: 255px; padding: 54px 38px 38px; }
  .page-hero { padding: 58px 0 28px; }
  .detail-layout { padding-top: 34px; gap: 22px; }
  .thumbs { grid-template-columns: repeat(4,1fr); }
  .detail-panel { padding: 28px 24px; }
  .detail-panel h1 { font-size: clamp(27px,8vw,34px); }
  .field-grid { grid-template-columns: 1fr; }
  .order-options { padding: 16px; }
  .checkout-card,.checkout-form { width: 100%; padding: 28px 18px; }
  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select { min-width: 0; max-width: 100%; }
  .checkout-heading { flex-direction: column; }
  .cart-item { grid-template-columns: 62px minmax(0,1fr); }
  .cart-item img { width: 62px; height: 62px; }
  .cart-remove { grid-column: 2; justify-self: start; }
  .cart-item-controls { grid-column: 2; justify-items: start; display: flex; align-items: center; flex-wrap: wrap; }
  .checkout-total { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-choice { gap: 12px 16px; }
  .order-success { padding: 42px 24px; }
  .content-card,.contact-card { padding: 38px 30px; }
  .story-photo { min-height: 0; }
  .faq-item summary { padding: 19px 18px; font-size: 16px; }
  .faq-answer { padding: 0 18px 20px; }
  .footer-shell { align-items: stretch; padding: 0; }
  .brand-logo-nav { width: 104px; }
  .brand-logo-footer { width: 170px; }
  .search-panel { width: 100vw; padding: 68px 20px 26px; }
  .search-close { right: 18px; }
  .color-options { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 6px; }
  .color-option { padding-inline: 3px; font-size: 9px; }
  .path-card { min-height: 360px; padding: 76px 48px 56px; }
  .journey-card,.prep-card,.step-card.cloud-surface { min-height: 250px; padding: 54px 38px 38px; }
  .individual-contact { min-height: 380px; padding: 74px 42px 58px; }
  .individual-fallback { padding: 68px 42px 50px; }
  .product-about-card { margin-top: 22px; padding: 46px 34px; }
  .daisy-hero-inset { width: 34px; height: 34px; left: -7px; right: auto; top: 28%; bottom: auto; }
  .daisy-values-inset { width: 42px; height: 42px; top: 18%; right: -12px; }
  .daisy-journey-inset { width: 38px; height: 38px; top: 43%; left: -11px; }
  .daisy-path-inset { width: 36px; height: 36px; top: 22%; right: -10px; }
  .footer-cloud { min-height: 235px; padding: 55px 39px 38px; }
  .site-footer { padding: 32px 10px 22px; }
  .footer-panel { padding: 34px 24px 20px; border-radius: 46px 58px 42px 62px / 54px 44px 60px 47px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-column { padding: 24px 8px; text-align: center; }
  .footer-column + .footer-column,
  .footer-column:nth-child(even),
  .footer-column:nth-child(n+3) { border-left: 0; border-top: 1px solid rgba(81,103,199,.16); }
  .footer-brand-column { padding-left: 8px; }
  .footer-brand-column .brand,
  .footer-location,
  .footer-nav a,
  .footer-individual-link { margin-left: auto; margin-right: auto; }
  .footer-order-column .messenger-icons { justify-content: center; }
  .footer-bottom { align-items: center; flex-direction: column; text-align: center; }
}

@media (max-width: 1050px) {
  .home-editorial { grid-template-columns: minmax(300px,.9fr) minmax(0,1.1fr); gap: 48px; }
  .home-individual-cloud { min-height: 660px; padding-inline: 76px; grid-template-columns: minmax(0,1.08fr) minmax(280px,.92fr); gap: 38px; }
  .home-individual-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 860px) {
  .home-editorial { grid-template-columns: 1fr; }
  .editorial-photo { width: min(100%,590px); margin: 0 auto; transform: none; }
  .editorial-copy { max-width: 680px; margin: 0 auto; text-align: center; }
  .editorial-copy > p:not(.eyebrow) { margin-inline: auto; }
  .editorial-facts { justify-content: center; }
  .process-line { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .process-line::before { display: none; }
  .process-line li { padding-top: 22px; border-top: 1px solid rgba(159,231,223,.32); }
  .home-individual-cloud { min-height: 0; padding: 96px 74px 92px; grid-template-columns: 1fr; gap: 34px; }
  .home-individual-cloud::before {
    inset: 0;
    -webkit-mask: none;
    mask: none;
    border: 1px solid rgba(255,255,255,.94);
    border-radius: 72px 88px 76px 92px / 84px 68px 94px 74px;
    box-shadow: inset 0 1px 0 white, 0 18px 38px rgba(38,50,74,.15);
    filter: none;
  }
  .home-individual-copy { text-align: center; }
  .home-individual-copy h2,.home-individual-lead { margin-inline: auto; }
  .home-individual-features { max-width: 620px; margin-inline: auto; text-align: left; }
  .home-individual-actions { align-items: center; }
  .home-individual-photo { width: min(100%,520px); margin: 0 auto; transform: none; }
  .notes-cloud-panel { min-height: 0; padding: 0; }
  .notes-cloud-panel::before { display: none; }
  .notes-cloud-grid { width: 100%; min-height: 0; grid-template-columns: 1fr; gap: 14px; }
  .note-cloud { width: min(100%,620px); min-height: 250px; margin: 0 auto; padding: 46px 58px; align-items: center; text-align: center; border: 1px solid rgba(255,255,255,.94); border-radius: 50px 62px 54px 68px / 60px 48px 70px 52px; box-shadow: inset 0 1px 0 white,0 14px 28px rgba(38,50,74,.12); }
  .note-cloud + .note-cloud { border-left: 1px solid rgba(255,255,255,.94); }
  .note-price { background: linear-gradient(145deg,rgba(255,255,255,.97),rgba(229,244,255,.95)); }
  .note-time { background: linear-gradient(145deg,rgba(255,255,255,.97),rgba(224,249,246,.95)); }
  .note-delivery { background: linear-gradient(145deg,rgba(255,255,255,.97),rgba(232,239,255,.96)); }
  .delivery-dialog { overflow-y: auto; overscroll-behavior: contain; }
  .delivery-dialog-content { height: auto; min-height: 100%; padding: 74px 58px 56px; grid-template-rows: auto auto auto; }
  .delivery-options { grid-template-columns: 1fr; }
  .delivery-payment-note { border-radius: 30px; flex-direction: column; gap: 4px; }
}

@media (max-width: 560px) {
  .home-editorial-section { padding-top: 36px; }
  .editorial-copy { padding-top: 4px; }
  .editorial-copy h2 { font-size: clamp(35px,11vw,48px); }
  .editorial-copy > p:not(.eyebrow) { font-size: 16px; }
  .editorial-facts { gap: 20px; }
  .home-process-section { margin: 10px 0; padding: 70px 0; }
  .process-heading { margin-bottom: 40px; }
  .process-line { grid-template-columns: 1fr; gap: 28px; }
  .process-line li { display: grid; grid-template-columns: 58px 1fr; column-gap: 17px; text-align: left; }
  .process-line li > span { grid-row: 1 / 3; width: 54px; height: 54px; margin: 0; }
  .process-line h3 { margin-top: 2px; }
  .process-line p { margin: 0; max-width: none; }
  .home-individual-section { margin: 6px 0; padding: 30px 0 36px; }
  .home-individual-cloud { --cloud-inset: -4px; padding: 64px 30px 58px; gap: 28px; }
  .home-individual-cloud::before { border-radius: 50px 62px 54px 68px / 60px 48px 70px 52px; }
  .home-individual-copy h2 { font-size: clamp(34px,10.5vw,46px); }
  .home-individual-lead { font-size: 15px; }
  .home-individual-features { margin-top: 22px; }
  .home-individual-features li { padding: 10px; grid-template-columns: 38px minmax(0,1fr); gap: 9px; }
  .home-individual-features li > span { width: 36px; height: 36px; }
  .home-individual-features strong { font-size: 15px; }
  .home-individual-features small { font-size: 12px; }
  .home-individual-actions { margin-top: 22px; }
  .home-individual-actions .button { width: 100%; }
  .home-individual-actions > small { max-width: 290px; }
  .home-notes-section { padding: 46px 0 54px; }
  .notes-heading-plain { width: 100%; margin-bottom: 25px; }
  .notes-heading-plain h2 { font-size: clamp(35px,10vw,46px); }
  .note-cloud { min-height: 0; padding: 34px 26px; }
  .note-cloud h3 { font-size: 26px; }
  .note-cloud > p:not(.eyebrow) { font-size: 15px; }
  .note-delivery-button { width: 100%; }
  .delivery-modal { padding: 6px; }
  .delivery-dialog-wrap { width: calc(100vw - 12px); height: calc(100dvh - 12px); min-height: 0; }
  .delivery-dialog { border-radius: 46px 58px 50px 62px / 56px 44px 66px 49px; }
  .delivery-dialog::before { inset: 0; -webkit-mask: none; mask: none; border: 1px solid rgba(255,255,255,.94); border-radius: inherit; box-shadow: inset 0 1px 0 white; filter: none; }
  .delivery-dialog-content { padding: 68px 22px 42px; gap: 18px; }
  .delivery-dialog-header h2 { font-size: clamp(34px,10vw,44px); }
  .delivery-dialog-header > p:last-child { font-size: 14px; }
  .delivery-options { gap: 12px; }
  .delivery-options article { padding: 18px; }
  .delivery-options h3 { font-size: 18px; }
  .delivery-dialog-wrap > .custom-order-close { top: -2px; right: -2px; }
  .home-portfolio-section { margin: 8px 0; padding: 58px 0 64px; }
  .daisy-editorial-a,.daisy-individual-a { width: 45px; height: 45px; right: -8px; }
  .daisy-editorial-b,.daisy-individual-b { width: 34px; height: 34px; left: -7px; }
  .daisy-process-a { width: 40px; height: 40px; left: -8px; }
  .daisy-process-b,.daisy-notes-a { width: 32px; height: 32px; right: -7px; }
}

/* Tighter rhythm for the first three homepage sections. */
.home-hero {
  min-height: 0;
  padding-bottom: 32px;
}
.home-popular-section {
  padding-top: 30px;
  padding-bottom: 26px;
}
.home-category-section {
  padding-top: 30px;
}

@media (max-width: 860px) {
  .home-hero { padding-bottom: 28px; }
  .home-popular-section { padding-top: 28px; padding-bottom: 24px; }
  .home-category-section { padding-top: 28px; }
}

@media (max-width: 560px) {
  .home-hero { padding-top: 38px; padding-bottom: 24px; }
  .home-popular-section { padding-top: 24px; padding-bottom: 20px; }
  .home-category-section { padding-top: 24px; }
}

/* Keep the navigation and category controls as rounded rectangles.
   Only the small background behind the wordmark uses the cloud silhouette. */
.hero-vase-main > .product-photo { object-position: center; }

.benefit-list li {
  min-height: 48px;
  padding: 15px 19px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.price-cloud,
.card-select {
  min-height: 56px;
  padding-top: 17px;
  padding-bottom: 15px;
}

.home-category-section,
.home-portfolio-section,
.home-individual-section {
  margin-block: 0;
  border-block: 0;
  box-shadow: none;
}

@media (max-width: 860px) {
  .portfolio-grid,
  .portfolio-row { gap: 12px; }
  .home-portfolio-section { margin: 0; padding: 56px 0 60px; }
  .home-individual-section { margin: 0; }
}

@media (max-width: 560px) {
  .benefit-list { justify-content: center; }
  .benefit-list li { width: calc(50% - 5px); min-height: 54px; padding-inline: 14px; text-align: center; }
  .benefit-list li:last-child { width: min(100%,260px); }
  .portfolio-grid,
  .portfolio-row { gap: 10px; }
  .portfolio-shot { border-radius: 18px; }
  .home-portfolio-section { margin: 0; padding: 46px 0 50px; }
  .home-individual-section { margin: 0; }
  .home-individual-caption { width: min(96%,430px); padding: 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-logo { animation: none; }
  .floating-daisy { animation: none; }
  .gallery-slide,.search-panel,.search-scrim,.nav-links a::before,
  .button,.button::before,.nav-order,.nav-order::before,.benefit-list li,.benefit-list li::before,
  .price-cloud,.price-cloud::before,.card-select,.card-select::before,.color-option,.color-swatch,.search-trigger,
  .portfolio-shot img,.portfolio-shot figcaption { transition: none; }
}

/* September review: compact visual individual-order story, full-width footer and clearer controls. */
.custom-order-dialog-wrap {
  width: min(1180px, calc(100vw - 24px));
  height: min(740px, calc(100dvh - 24px));
  min-height: min(500px, calc(100dvh - 24px));
}
.custom-order-story-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(46px, 6.5vh, 58px) clamp(72px, 8.5vw, 108px) clamp(42px, 5.8vh, 52px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: clamp(9px, 1.5vh, 14px);
  overflow: hidden;
}
.custom-order-story-header {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: center;
  gap: 22px;
}
.custom-order-story-header .eyebrow {
  margin: 0 0 4px;
  color: var(--brand-blue);
}
.custom-order-story-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.custom-order-story-header p:last-child {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}
.custom-order-story-daisy {
  width: 92px;
  aspect-ratio: 1;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 13px 16px rgba(38,50,74,.2));
  transform: rotate(8deg);
}
.custom-order-story-steps {
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}
.custom-order-story-steps > li {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 9px 9px 14px;
  display: grid;
  grid-template-rows: minmax(110px, 1fr) auto;
  gap: 11px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.98);
  border-radius: 27px 34px 29px 38px / 34px 27px 37px 29px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 white, 0 12px 24px rgba(38,50,74,.1);
}
.custom-order-story-steps > li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 5;
  top: 43%;
  right: -25px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(228,247,251,.96);
  border-radius: 50%;
  background: var(--brand-blue);
  color: white;
  font: 900 16px/1 var(--font-body);
  box-shadow: 0 8px 15px rgba(38,50,74,.18);
}
.custom-order-story-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 2px solid rgba(81,103,199,.18);
  border-radius: 22px 29px 23px 32px / 28px 22px 31px 24px;
  background: rgba(222,242,255,.75);
}
.custom-order-story-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.custom-order-story-idea > img { object-position: 50% 56%; }
.custom-order-story-details > img { object-position: 52% 39%; }
.custom-order-story-result > img { object-position: 50% 50%; }
.custom-order-story-visual .custom-order-guide-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 56px;
  margin: 0;
  border: 3px solid rgba(255,255,255,.96);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(220,245,249,.94));
  box-shadow: 0 10px 20px rgba(38,50,74,.18);
}
.custom-order-story-visual .custom-order-guide-icon::before { inset: 6px; }
.custom-order-story-number {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-width: 43px;
  height: 31px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.96);
  border-radius: 999px;
  background: var(--brand-blue);
  color: white;
  font: 900 12px/1 var(--font-body);
  box-shadow: 0 8px 16px rgba(38,50,74,.2);
}
.custom-order-story-copy {
  min-width: 0;
  padding: 0 7px 2px;
  text-align: center;
}
.custom-order-story-copy h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.custom-order-story-copy p {
  margin: 0 auto;
  max-width: 28ch;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}
.custom-order-story-tags {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  list-style: none;
}
.custom-order-story-tags li {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(81,103,199,.14);
  border-radius: 999px;
  background: rgba(226,246,251,.78);
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}
.custom-order-story-contact {
  min-width: 0;
  padding: 9px 10px 9px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.98);
  border-radius: 24px 31px 26px 34px / 30px 24px 33px 26px;
  background: linear-gradient(90deg, rgba(222,245,251,.96), rgba(255,255,255,.96));
  box-shadow: inset 0 1px 0 white, inset 0 -8px 18px rgba(81,103,199,.05);
}
.custom-order-story-contact p { margin: 0; color: var(--ink); }
.custom-order-story-contact p span,
.custom-order-story-contact p strong { display: block; }
.custom-order-story-contact p span { font-size: 11px; }
.custom-order-story-contact p strong { margin-top: 2px; font-size: 16px; line-height: 1.2; }
.custom-order-story-contact .custom-order-messengers { margin: 0; }
.custom-order-story-contact .custom-order-messenger,
.custom-order-story-contact .custom-order-messenger.telegram,
.custom-order-story-contact .custom-order-messenger.vk {
  min-height: 41px;
  background: var(--brand-blue);
  box-shadow: 0 7px 15px rgba(38,50,74,.16);
}

.search-trigger,
.search-trigger:hover,
.search-trigger:focus-visible {
  width: 44px;
  height: 44px;
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  background: rgba(255,255,255,.72) !important;
  box-shadow: inset 0 1px 0 white, 0 7px 14px rgba(38,50,74,.12);
}
.search-trigger:hover { border-color: var(--tiffany-deep); background: white !important; }
.search-trigger:focus-visible { outline: 3px solid rgba(81,103,199,.26); outline-offset: 3px; }
.home-order-button.secondary {
  --action-cloud-fill: var(--brand-blue);
  color: white;
}

.site-footer { padding: 44px 0 0; }
.footer-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px max(24px, calc((100vw - 1180px) / 2 + 24px)) 22px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(120deg, rgba(240,250,255,.96), rgba(218,245,248,.94) 48%, rgba(220,232,255,.96));
  box-shadow: 0 -15px 36px rgba(38,50,74,.1);
}
.footer-panel::before { background-size: 1180px auto; opacity: .18; }
.footer-social-row {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.footer-social-row .messenger-icons { margin: 0; gap: 9px; }
.footer-instagram-plaque {
  min-height: 43px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #5969c7, #a855b4 52%, #e27b68);
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 9px 18px rgba(38,50,74,.18);
}
.footer-instagram-plaque svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-height: 660px) and (min-width: 701px) {
  .custom-order-story-content { padding: 34px 76px 30px; gap: 7px; }
  .custom-order-story-header { grid-template-columns: minmax(0,1fr) 66px; }
  .custom-order-story-header .eyebrow { display: none; }
  .custom-order-story-header h2 { font-size: clamp(27px, 3.4vw, 36px); }
  .custom-order-story-header p:last-child { margin-top: 4px; font-size: 12px; }
  .custom-order-story-daisy { width: 64px; }
  .custom-order-story-steps { gap: 14px; }
  .custom-order-story-steps > li { padding: 7px 7px 9px; gap: 6px; }
  .custom-order-story-steps > li:not(:last-child)::after { right: -21px; width: 27px; height: 27px; font-size: 14px; }
  .custom-order-story-visual .custom-order-guide-icon { width: 44px; top: 7px; left: 7px; }
  .custom-order-story-number { right: 7px; bottom: 7px; height: 27px; }
  .custom-order-story-copy h3 { margin-bottom: 2px; font-size: 15px; }
  .custom-order-story-copy p { font-size: 11px; line-height: 1.24; }
  .custom-order-story-tags li { padding: 6px 8px; font-size: 10px; }
  .custom-order-story-contact { padding-block: 6px; }
  .custom-order-story-contact p strong { font-size: 14px; }
  .custom-order-story-contact .custom-order-messenger { min-height: 35px; }
}

@media (max-width: 700px) {
  .custom-order-dialog-wrap {
    width: calc(100vw - 14px);
    height: calc(100dvh - 14px);
    min-height: 0;
  }
  .custom-order-dialog-v2 {
    background: var(--cloud-fill);
    border: 1px solid rgba(255,255,255,.94);
    border-radius: 46px 58px 50px 62px / 56px 44px 64px 49px;
  }
  .custom-order-dialog-v2::before { display: none; }
  .custom-order-story-content {
    padding: 39px 16px 19px;
    grid-template-rows: auto minmax(0,1fr) auto auto;
    gap: 8px;
  }
  .custom-order-story-header { grid-template-columns: minmax(0,1fr) 62px; gap: 10px; }
  .custom-order-story-header .eyebrow { margin-bottom: 2px; font-size: 9px; }
  .custom-order-story-header h2 { font-size: clamp(22px, 6.8vw, 29px); line-height: 1.02; }
  .custom-order-story-header p:last-child { margin-top: 3px; font-size: 11px; line-height: 1.25; }
  .custom-order-story-daisy { width: 60px; }
  .custom-order-story-steps {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0,1fr));
    gap: 7px;
  }
  .custom-order-story-steps > li {
    padding: 6px;
    grid-template-columns: minmax(72px, 27%) minmax(0,1fr);
    grid-template-rows: 1fr;
    align-items: center;
    gap: 10px;
    border-radius: 20px 25px 21px 28px / 25px 20px 27px 22px;
  }
  .custom-order-story-steps > li:not(:last-child)::after { display: none; }
  .custom-order-story-visual { width: 100%; height: 100%; min-height: 0; border-radius: 16px 20px 17px 22px / 20px 16px 22px 17px; }
  .custom-order-story-visual .custom-order-guide-icon { top: 5px; left: 5px; width: 36px; border-width: 2px; }
  .custom-order-story-number { right: 5px; bottom: 5px; min-width: 34px; height: 23px; padding-inline: 7px; font-size: 9px; }
  .custom-order-story-copy { padding: 0 7px 0 0; text-align: left; }
  .custom-order-story-copy h3 { margin-bottom: 3px; font-size: 15px; }
  .custom-order-story-copy p { max-width: none; font-size: 11px; line-height: 1.25; }
  .custom-order-story-tags { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 5px; }
  .custom-order-story-tags li { padding: 5px 7px; font-size: 9px; }
  .custom-order-story-contact { padding: 7px 8px 7px 12px; gap: 7px; }
  .custom-order-story-contact p span { font-size: 9px; }
  .custom-order-story-contact p strong { font-size: 12px; }
  .custom-order-story-contact .custom-order-messengers { gap: 5px; }
  .custom-order-story-contact .custom-order-messenger { min-width: 82px; min-height: 34px; padding: 6px 8px; font-size: 10px; }
  .custom-order-story-contact .custom-order-messenger svg { width: 16px; height: 16px; }
  .footer-panel { width: 100%; max-width: none; padding-inline: 30px; }
}

@media (max-width: 460px) {
  .custom-order-story-header { grid-template-columns: minmax(0,1fr) 50px; }
  .custom-order-story-daisy { width: 48px; }
  .custom-order-story-contact { grid-template-columns: 1fr; text-align: center; }
  .custom-order-story-contact .custom-order-messengers { width: 100%; }
  .custom-order-story-contact .custom-order-messenger { flex: 1 1 0; min-width: 0; }
  .footer-panel { padding: 36px 22px 20px; }
  .footer-social-row { justify-content: center; }
}

@media (max-height: 640px) {
  .custom-order-story-content { padding-top: 31px; padding-bottom: 14px; gap: 5px; }
  .custom-order-story-header .eyebrow,
  .custom-order-story-header p:last-child,
  .custom-order-story-tags { display: none; }
  .custom-order-story-header { grid-template-columns: minmax(0,1fr) 45px; }
  .custom-order-story-header h2 { font-size: clamp(20px, 5.8vw, 28px); }
  .custom-order-story-daisy { width: 43px; }
  .custom-order-story-steps { gap: 5px; }
  .custom-order-story-steps > li { padding: 5px; gap: 7px; }
  .custom-order-story-copy h3 { margin-bottom: 1px; font-size: 13px; }
  .custom-order-story-copy p { font-size: 10px; line-height: 1.15; }
  .custom-order-story-contact { padding-block: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  .custom-order-story-daisy,
  .custom-order-story-steps > li,
  .footer-instagram-plaque { transition: none; }
}

/* Keep the complete order composition inside a fuller cloud on every screen. */
.custom-order-dialog-wrap {
  width: min(1260px, calc(100vw - 48px));
  height: min(800px, calc(100dvh - 48px));
  min-height: min(500px, calc(100dvh - 48px));
}
.custom-order-dialog-v2 {
  overflow: visible;
  background: var(--cloud-fill);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 108px 124px 112px 132px / 122px 104px 136px 112px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.92), 0 24px 48px rgba(25,41,69,.2);
}
.custom-order-dialog-v2::before {
  inset: -12px;
  z-index: -1;
  filter:
    drop-shadow(0 8px 0 rgba(255,255,255,.5))
    drop-shadow(0 22px 36px rgba(25,41,69,.22))
    drop-shadow(0 0 24px rgba(130,215,207,.2));
}
.custom-order-story-content {
  padding: clamp(48px, 6.3vh, 60px) clamp(82px, 8.6vw, 116px) clamp(52px, 6.8vh, 66px);
  border-radius: inherit;
}
.custom-order-story-tags,
.custom-order-story-contact {
  width: calc(100% - 36px);
  margin-right: auto;
  margin-left: auto;
}

/* Social controls always reflow inside the footer column. */
.footer-order-column { overflow: hidden; }
.footer-social-row {
  width: 100%;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
}
.footer-social-row .messenger-icons { min-width: 0; }
.footer-instagram-plaque {
  width: 100%;
  min-width: 0;
  max-width: 150px;
  justify-content: center;
  justify-self: start;
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 1100px) and (min-width: 561px) {
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-column { padding: 24px 26px; }
  .footer-column + .footer-column { border-left: 0; }
  .footer-column:nth-child(even) { border-left: 1px solid rgba(81,103,199,.16); }
  .footer-column:nth-child(n+3) { border-top: 1px solid rgba(81,103,199,.16); }
  .footer-brand-column { padding-left: 26px; }
}

@media (max-width: 1180px) and (min-width: 701px) {
  .custom-order-dialog-wrap {
    width: calc(100vw - 40px);
    height: calc(100dvh - 40px);
    min-height: 0;
  }
  .custom-order-story-content { padding-right: 84px; padding-left: 84px; }
  .custom-order-story-tags,
  .custom-order-story-contact { width: calc(100% - 28px); }
}

@media (max-height: 700px) and (min-width: 701px) {
  .custom-order-dialog-wrap {
    width: calc(100vw - 36px);
    height: calc(100dvh - 36px);
  }
  .custom-order-story-content { padding: 34px 80px 36px; gap: 7px; }
  .custom-order-story-header { grid-template-columns: minmax(0,1fr) 68px; }
  .custom-order-story-header .eyebrow { display: none; }
  .custom-order-story-header h2 { font-size: clamp(27px, 3.4vw, 36px); }
  .custom-order-story-header p:last-child { margin-top: 4px; font-size: 12px; }
  .custom-order-story-daisy { width: 64px; }
  .custom-order-story-steps > li { padding: 7px 7px 10px; gap: 7px; }
  .custom-order-story-copy h3 { margin-bottom: 2px; font-size: 15px; }
  .custom-order-story-copy p { font-size: 11px; line-height: 1.22; }
  .custom-order-story-tags li { padding: 6px 8px; font-size: 10px; }
  .custom-order-story-contact { padding-top: 6px; padding-bottom: 6px; }
}

@media (max-width: 700px) {
  .custom-order-dialog-wrap {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
  }
  .custom-order-dialog-v2 {
    overflow: hidden;
    border-radius: 50px 62px 54px 68px / 60px 48px 70px 52px;
  }
  .custom-order-dialog-v2::before { display: none; }
  .custom-order-story-content { padding: 40px 18px 24px; }
  .custom-order-story-tags,
  .custom-order-story-contact { width: 100%; }
  .custom-order-story-contact { overflow: hidden; }
}

@media (max-width: 560px) {
  .footer-social-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-instagram-plaque { justify-self: center; }
}

/* A recognisable cloud silhouette with a generous, content-safe centre. */
.custom-order-dialog-v2 {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.custom-order-dialog-v2::before {
  display: block;
  inset: -10px;
  background: var(--cloud-fill);
  -webkit-mask: url("/assets/sloenka-dialog-cloud-safe.svg?v=6") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-dialog-cloud-safe.svg?v=6") center / 100% 100% no-repeat;
  filter:
    drop-shadow(0 8px 0 rgba(255,255,255,.52))
    drop-shadow(0 24px 40px rgba(25,41,69,.25))
    drop-shadow(0 0 26px rgba(130,215,207,.2));
}
.custom-order-story-content { border-radius: 0; }

@media (max-width: 700px) {
  .custom-order-dialog-v2 {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .custom-order-dialog-v2::before {
    display: block;
    inset: -5px;
    -webkit-mask: url("/assets/sloenka-dialog-cloud-mobile.svg?v=1") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-dialog-cloud-mobile.svg?v=1") center / 100% 100% no-repeat;
    filter:
      drop-shadow(0 5px 0 rgba(255,255,255,.5))
      drop-shadow(0 18px 30px rgba(25,41,69,.24));
  }
  .custom-order-story-content { padding: 43px 25px 35px; }
  .custom-order-story-tags,
  .custom-order-story-contact { width: calc(100% - 10px); }
}

@media (max-width: 700px) and (max-height: 640px) {
  .custom-order-story-content { padding: 34px 23px 27px; }
}

/* Keep every cloud lobe and every footer flower visible at the viewport edges. */
.footer-panel::before {
  background-position: center 55%;
  background-size: 1180px auto;
  background-repeat: repeat-x;
  opacity: .2;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 8px 18px rgba(81,103,199,.2);
}

/* Full cloud silhouettes and unified dark-blue header controls. */
.home-individual-cloud::before {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask: url("/assets/sloenka-dialog-cloud-safe.svg?v=6") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-dialog-cloud-safe.svg?v=6") center / 100% 100% no-repeat;
  filter: drop-shadow(0 17px 26px rgba(38,50,74,.16));
}

.search-trigger,
.search-trigger:hover,
.search-trigger:focus-visible {
  border-color: var(--ink);
  background: rgba(255,255,255,.9) !important;
  color: var(--ink);
}
.search-trigger:hover { background: white !important; }
.nav-order { --action-cloud-fill: var(--ink); color: white; }

@media (max-width: 860px) {
  .home-individual-cloud::before {
    -webkit-mask: url("/assets/sloenka-dialog-cloud-mobile.svg?v=2") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-dialog-cloud-mobile.svg?v=2") center / 100% 100% no-repeat;
  }
}

/* Custom-order illustrations and labels approved for the modal. */
.custom-order-story-header { row-gap: 4px; }
.custom-order-story-header > .eyebrow {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  justify-self: center;
  text-align: center;
}
.custom-order-story-visual > img.custom-order-story-illustration {
  object-fit: cover;
  object-position: center;
  background: #dcefff;
}
.custom-order-story-tags li {
  border: 2px solid var(--brand-blue);
  background: rgba(235,248,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 5px 11px rgba(81,103,199,.1);
}

/* Delivery and payment follows the approved custom-order story language. */
.delivery-dialog-wrap.custom-order-dialog-wrap {
  width: min(1260px, calc(100vw - 48px));
  height: min(800px, calc(100dvh - 48px));
  min-height: min(500px, calc(100dvh - 48px));
}
.delivery-dialog.custom-order-dialog-v2 {
  overflow: visible;
  background: transparent;
}
.delivery-dialog.custom-order-dialog-v2::before {
  inset: -10px;
  -webkit-mask: url("/assets/sloenka-dialog-cloud-safe.svg?v=6") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-dialog-cloud-safe.svg?v=6") center / 100% 100% no-repeat;
  filter:
    drop-shadow(0 8px 0 rgba(255,255,255,.52))
    drop-shadow(0 24px 40px rgba(25,41,69,.25))
    drop-shadow(0 0 26px rgba(130,215,207,.2));
}
.delivery-dialog-content.custom-order-story-content {
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}
.delivery-dialog-header.custom-order-story-header {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
}
.delivery-dialog-header.custom-order-story-header > .eyebrow {
  color: var(--brand-blue);
  text-align: center;
}
.delivery-options.custom-order-story-steps {
  margin: 0;
  padding: 0;
}
.delivery-options.custom-order-story-steps > li {
  padding: 9px 9px 14px;
}
.delivery-options .custom-order-story-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.delivery-story-pickup > img { object-position: 50% 45%; }
.delivery-story-route > img { object-position: 50% 50%; }
.delivery-story-payment > img { object-position: 50% 46%; }
.delivery-payment-note.custom-order-story-contact {
  width: calc(100% - 36px);
  max-width: none;
  margin: 0 auto;
  padding: 9px 12px 9px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  flex-direction: initial;
  gap: 14px;
  border-radius: 24px 31px 26px 34px / 30px 24px 33px 26px;
}
.delivery-payment-note.custom-order-story-contact p { margin: 0; }
.delivery-payment-note.custom-order-story-contact p > span,
.delivery-payment-note.custom-order-story-contact p > strong { display: block; }
.delivery-payment-note.custom-order-story-contact p > span {
  color: var(--ink);
  font-size: 11px;
}
.delivery-payment-note.custom-order-story-contact p > strong {
  margin-top: 2px;
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1.2;
}
.delivery-payment-extra {
  min-height: 41px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-blue);
  border-radius: 999px;
  background: rgba(235,248,255,.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1180px) and (min-width: 701px) {
  .delivery-dialog-wrap.custom-order-dialog-wrap {
    width: calc(100vw - 40px);
    height: calc(100dvh - 40px);
    min-height: 0;
  }
}

@media (max-height: 700px) and (min-width: 701px) {
  .delivery-dialog-wrap.custom-order-dialog-wrap {
    width: calc(100vw - 36px);
    height: calc(100dvh - 36px);
  }
  .delivery-dialog-content.custom-order-story-content { padding: 34px 80px 36px; gap: 7px; }
}

@media (max-width: 700px) {
  .delivery-dialog-wrap.custom-order-dialog-wrap {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    min-height: 0;
  }
  .delivery-dialog.custom-order-dialog-v2 { overflow: visible; }
  .delivery-dialog.custom-order-dialog-v2::before {
    display: block;
    inset: -5px;
    -webkit-mask: url("/assets/sloenka-dialog-cloud-mobile.svg?v=1") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-dialog-cloud-mobile.svg?v=1") center / 100% 100% no-repeat;
    filter:
      drop-shadow(0 5px 0 rgba(255,255,255,.5))
      drop-shadow(0 18px 30px rgba(25,41,69,.24));
  }
  .delivery-dialog-content.custom-order-story-content {
    height: 100%;
    min-height: 0;
    padding: 43px 25px 35px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
  }
  .delivery-options.custom-order-story-steps {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .delivery-options.custom-order-story-steps > li {
    padding: 6px;
    grid-template-columns: minmax(72px, 27%) minmax(0, 1fr);
    grid-template-rows: 1fr;
  }
  .delivery-payment-note.custom-order-story-contact {
    width: calc(100% - 10px);
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 7px 8px 7px 12px;
  }
  .delivery-payment-note.custom-order-story-contact p > strong { font-size: 12px; }
  .delivery-payment-extra { min-height: 34px; max-width: 180px; padding: 6px 10px; font-size: 9px; }
}

@media (max-width: 460px) {
  .delivery-payment-note.custom-order-story-contact { grid-template-columns: 1fr; text-align: center; }
  .delivery-payment-extra { width: 100%; max-width: none; }
}

@media (max-width: 700px) and (max-height: 640px) {
  .delivery-dialog-content.custom-order-story-content { padding: 34px 23px 27px; }
  .delivery-payment-extra { min-height: 30px; }
}

/* Requested homepage and catalog corrections. */
.note-delivery-button.button.secondary {
  --action-cloud-fill: var(--brand-blue);
  color: white;
}

.global-search-result[hidden],
.product-card[hidden],
.global-search-empty[hidden] {
  display: none !important;
}

.footer-panel > .footer-daisy {
  z-index: 1;
  opacity: .96;
}
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}
.footer-daisy-left-top { width: 62px; height: 62px; left: 1.2%; top: 11%; animation-delay: -1.2s; }
.footer-daisy-left-bottom { width: 42px; height: 42px; left: 3.6%; bottom: 9%; animation-delay: -4.4s; }
.footer-daisy-right-top { width: 48px; height: 48px; right: 3.3%; top: 10%; animation-delay: -3.1s; }
.footer-daisy-right-bottom { width: 68px; height: 68px; right: .8%; bottom: 7%; animation-delay: -.6s; }

@media (max-width: 700px) {
  .footer-daisy-left-top { width: 44px; height: 44px; left: -5px; top: 7%; }
  .footer-daisy-left-bottom { width: 31px; height: 31px; left: 5px; bottom: 8%; }
  .footer-daisy-right-top { width: 34px; height: 34px; right: 5px; top: 6%; }
  .footer-daisy-right-bottom { width: 47px; height: 47px; right: -7px; bottom: 7%; }
}

/* September category, motion and alignment review. */
.category-tab {
  min-height: 78px;
}

.category-tab:hover,
.category-tab:focus-visible,
.category-tab.is-active {
  transform: translateY(-2px);
}

.category-preview-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 7px;
  overflow: hidden;
  background: rgba(220,239,255,.72);
}

.category-preview-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.category-preview-collage img:nth-child(1) { object-position: center; }
.category-preview-collage img:nth-child(2) { object-position: center; }
.category-preview-collage img:nth-child(3) { object-position: center; }
.category-preview-collage img:nth-child(4) { object-position: center; }

.custom-order-close {
  padding: 0;
  display: grid;
  place-items: center;
  line-height: 0;
}

.custom-order-close svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.benefit-list li,
.benefit-list li::before,
.price-cloud,
.price-cloud::before {
  transition: none !important;
}

.benefit-list li:hover,
.benefit-list li:focus-visible,
.price-cloud:hover,
.price-cloud:focus-visible {
  transform: none !important;
}

.benefit-list li:hover::before,
.benefit-list li:focus-visible::before {
  transform: none !important;
  filter: drop-shadow(0 9px 14px rgba(38,50,74,.16));
}

.price-cloud:hover::before,
.price-cloud:focus-visible::before {
  transform: none !important;
  filter: drop-shadow(0 8px 14px rgba(38,50,74,.11));
}

.note-cloud,
.note-cloud .eyebrow,
.note-cloud h3,
.note-cloud > p:not(.eyebrow) {
  width: 100%;
  text-align: center;
}

.note-cloud {
  align-items: center;
}

@media (max-width: 860px) {
  .category-tab:hover,
  .category-tab:focus-visible,
  .category-tab.is-active { transform: none; }
  .category-preview-collage { padding: 7px; gap: 6px; }
  .category-preview-collage img { border-radius: 15px; }
}

/* About, ordering and contacts pages in the Sloenka visual language. */
.about-page-hero,
.order-page-hero,
.contacts-page-hero {
  padding-bottom: 42px;
}

.about-intro-section,
.order-guide-section,
.contacts-showcase-section {
  padding-top: 12px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: 24px;
}

.about-story-cloud {
  --cloud-fill: linear-gradient(145deg, rgba(255,255,255,.985), rgba(226,247,250,.97) 58%, rgba(226,236,255,.97));
  --cloud-inset: 0;
  min-width: 0;
  min-height: 650px;
  padding: clamp(82px, 7vw, 104px) clamp(55px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-cloud::before {
  filter: drop-shadow(0 22px 38px rgba(38,50,74,.16));
}

.about-story-cloud h2,
.about-choice-band h2,
.order-guide-header h2,
.contacts-showcase-copy h2 {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-weight: 400;
  text-wrap: balance;
}

.about-story-cloud h2 {
  max-width: 13ch;
  font-size: clamp(36px, 4.2vw, 55px);
  line-height: 1.03;
}

.about-story-cloud > p:not(.eyebrow) {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
}

.about-story-cloud .about-story-lead {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.about-story-facts {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.about-story-facts li {
  min-width: 0;
  padding: 12px 15px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(81,103,199,.17);
  border-radius: 22px 28px 23px 30px / 27px 21px 31px 24px;
  background: rgba(255,255,255,.62);
}

.about-story-facts strong { color: var(--brand-blue); font-size: 14px; }
.about-story-facts span { color: var(--ink-soft); font-size: 12px; line-height: 1.4; }

.about-collage {
  min-height: 650px;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: repeat(7, minmax(0, 1fr));
  gap: 11px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 42px 58px 46px 64px / 54px 42px 61px 46px;
  background: rgba(255,255,255,.46);
  box-shadow: inset 0 1px 0 white, 0 22px 42px rgba(38,50,74,.16);
}

.about-collage-photo {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 9px 20px rgba(38,50,74,.12);
}

.about-collage-photo:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 5; }
.about-collage-photo:nth-child(2) { grid-column: 5 / 8; grid-row: 1 / 5; }
.about-collage-photo:nth-child(3) { grid-column: 1 / 4; grid-row: 5 / 8; }
.about-collage-photo:nth-child(4) { grid-column: 4 / 8; grid-row: 5 / 8; }

.about-principles-section .section-heading,
.order-info-heading,
.contact-routes-section .section-heading {
  margin-bottom: 38px;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.about-principle {
  --cloud-fill: rgba(255,255,255,.88);
  --cloud-inset: -5px;
  min-width: 0;
  min-height: 260px;
  padding: 58px 31px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.about-principle > span,
.order-info-card > span,
.contact-route-card > span {
  width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-blue);
  color: white;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 7px 14px rgba(38,50,74,.14);
}

.about-principle h3 {
  margin: 15px 0 9px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}

.about-principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.about-choice-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(36px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 38px 52px 42px 58px / 48px 37px 56px 41px;
  background: linear-gradient(120deg, rgba(255,255,255,.88), rgba(215,244,248,.82));
  box-shadow: inset 0 1px 0 white, 0 20px 40px rgba(38,50,74,.13);
}

.about-choice-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center / cover no-repeat;
  opacity: .11;
  pointer-events: none;
}

.about-choice-band h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.about-choice-band p:not(.eyebrow) { max-width: 650px; margin: 12px 0 0; color: var(--ink-soft); line-height: 1.55; }
.about-choice-band .hero-actions { margin-top: 0; justify-content: flex-end; }

.order-guide-cloud {
  --cloud-fill: linear-gradient(145deg, rgba(255,255,255,.99), rgba(226,246,255,.985) 58%, rgba(220,247,242,.98));
  --cloud-inset: 0;
  min-height: 760px;
  padding: clamp(82px, 7vw, 108px) clamp(74px, 7vw, 112px) clamp(72px, 6vw, 92px);
}

.order-guide-cloud::before {
  filter: drop-shadow(0 24px 42px rgba(25,41,69,.2));
}

.order-guide-header {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.order-guide-header h2 { font-size: clamp(36px, 4.7vw, 58px); line-height: 1.03; }
.order-guide-header > p:last-child { margin: 10px auto 0; color: var(--ink-soft); font-size: 15px; }

.order-page-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.order-page-steps > li {
  min-width: 0;
  padding: 10px 10px 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 28px 38px 31px 42px / 36px 28px 41px 32px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 white, 0 13px 25px rgba(38,50,74,.1);
  text-align: center;
}

.order-page-step-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 28px 22px 31px / 27px 20px 30px 23px;
}

.order-page-step-visual img { width: 100%; height: 100%; object-fit: cover; }
.order-page-step-visual > span { position: absolute; left: 50%; bottom: 7px; transform: translateX(-50%); min-width: 42px; padding: 7px 12px; border: 2px solid white; border-radius: 999px; background: linear-gradient(145deg, var(--brand-blue), var(--tiffany-deep)); color: white; font-size: 11px; font-weight: 900; box-shadow: 0 7px 14px rgba(38,50,74,.18); }
.order-page-steps h3 { margin: 18px 10px 8px; color: var(--ink); font-size: 20px; line-height: 1.2; }
.order-page-steps p { margin: 0 10px; color: var(--ink-soft); font-size: 14px; line-height: 1.48; }

.order-guide-tags {
  margin: 21px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.order-guide-tags li { padding: 9px 14px; border: 1.5px solid rgba(81,103,199,.48); border-radius: 999px; background: rgba(255,255,255,.58); color: var(--ink); font-size: 12px; }
.order-guide-actions { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; }

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.order-info-card {
  min-width: 0;
  padding: 34px 32px;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 30px 42px 34px 46px / 39px 31px 44px 35px;
  background: linear-gradient(145deg, rgba(255,255,255,.83), rgba(224,245,251,.7));
  box-shadow: inset 0 1px 0 white, 0 15px 30px rgba(38,50,74,.11);
  text-align: center;
}

.order-info-card > span { margin: 0 auto; }
.order-info-card h3 { margin: 16px 0 10px; color: var(--brand-blue); font-size: 25px; }
.order-info-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.56; }

.contacts-showcase {
  --cloud-fill: linear-gradient(145deg, rgba(255,255,255,.99), rgba(226,247,250,.975) 58%, rgba(227,236,255,.98));
  --cloud-inset: 0;
  min-height: 650px;
  padding: clamp(86px, 7vw, 108px) clamp(84px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  align-items: center;
  gap: 54px;
}

.contacts-showcase::before { filter: drop-shadow(0 24px 42px rgba(25,41,69,.2)); }
.contacts-showcase-copy { min-width: 0; }
.contacts-showcase-copy h2 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.04; }
.contacts-showcase-copy > p:not(.eyebrow) { margin: 17px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.contacts-message-box { margin: 23px 0 16px; padding: 15px 19px; display: grid; gap: 3px; border: 1.5px solid rgba(81,103,199,.38); border-radius: 25px 32px 27px 35px / 31px 24px 36px 27px; background: rgba(255,255,255,.66); }
.contacts-message-box span { color: var(--brand-blue); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contacts-message-box strong { color: var(--ink); font-size: 20px; font-weight: 400; }
.contacts-showcase-copy > small { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.contacts-showcase-copy .custom-order-messengers { justify-content: flex-start; }
.contacts-showcase-copy .custom-order-messenger { min-width: 138px; }

.contacts-showcase-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: visible;
}

.contacts-showcase-visual > .product-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contacts-showcase-daisy { z-index: 4; width: 64px; height: 64px; right: -12px; bottom: 8%; }

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.contact-route-card {
  --cloud-fill: rgba(255,255,255,.9);
  --cloud-inset: -5px;
  min-width: 0;
  min-height: 310px;
  padding: 62px 43px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  text-align: center;
  transition: transform .22s ease;
}

.contact-route-card:hover,
.contact-route-card:focus-visible { transform: translateY(-4px); outline: none; }
.contact-route-card h3 { margin: 17px 0 9px; color: var(--brand-blue); font-size: 24px; line-height: 1.2; }
.contact-route-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.52; }
.contact-route-card > strong { margin-top: auto; padding-top: 18px; color: var(--brand-blue); font-size: 13px; }

.contacts-facts-band {
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 34px 46px 37px 51px / 42px 33px 49px 36px;
  background: linear-gradient(110deg, rgba(255,255,255,.82), rgba(210,243,248,.78), rgba(226,236,255,.78));
  box-shadow: inset 0 1px 0 white, 0 17px 34px rgba(38,50,74,.12);
}

.contacts-facts-band::after { content: ""; position: absolute; inset: 0; background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center / cover no-repeat; opacity: .08; pointer-events: none; }
.contacts-facts-band article { position: relative; z-index: 1; min-width: 0; padding: 10px 24px; display: grid; gap: 6px; text-align: center; }
.contacts-facts-band article + article { border-left: 1px solid rgba(81,103,199,.18); }
.contacts-facts-band strong { color: var(--brand-blue); font-size: 20px; font-weight: 400; }
.contacts-facts-band span { color: var(--ink-soft); font-size: 13px; }

@media (max-width: 980px) {
  .about-intro-grid,
  .contacts-showcase { grid-template-columns: 1fr; }
  .about-story-cloud { min-height: 580px; }
  .about-collage { width: min(100%, 720px); min-height: 0; margin: 0 auto; }
  .about-principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-choice-band { grid-template-columns: 1fr; text-align: center; }
  .about-choice-band p:not(.eyebrow) { margin-inline: auto; }
  .about-choice-band .hero-actions { justify-content: center; }
  .contacts-showcase { gap: 30px; }
  .contacts-showcase-copy { max-width: 680px; margin: 0 auto; text-align: center; }
  .contacts-showcase-copy .custom-order-messengers { justify-content: center; }
  .contacts-showcase-visual { width: min(100%, 500px); margin: 0 auto; }
}

@media (max-width: 760px) {
  .about-page-hero,
  .order-page-hero,
  .contacts-page-hero { padding-bottom: 24px; }
  .about-story-cloud,
  .order-guide-cloud,
  .contacts-showcase {
    min-height: 0;
    padding: 48px 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.94);
    border-radius: 46px 58px 50px 64px / 55px 43px 62px 47px;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(226,247,250,.92), rgba(226,236,255,.92));
    box-shadow: inset 0 1px 0 white, 0 18px 34px rgba(38,50,74,.14);
  }
  .about-story-cloud::before,
  .order-guide-cloud::before,
  .contacts-showcase::before { display: none; }
  .about-story-cloud h2 { max-width: none; font-size: clamp(34px, 10vw, 46px); }
  .about-story-cloud,
  .about-story-cloud h2 { text-align: center; }
  .about-story-cloud .eyebrow { text-align: center; }
  .about-principles-grid,
  .order-page-steps,
  .order-info-grid,
  .contact-route-grid { grid-template-columns: 1fr; }
  .about-principle { min-height: 230px; }
  .order-guide-header { margin-bottom: 20px; }
  .order-guide-header h2 { font-size: clamp(34px, 10vw, 46px); }
  .order-page-steps > li { display: grid; grid-template-columns: minmax(110px, .85fr) minmax(0, 1.15fr); align-items: center; padding: 9px; text-align: left; }
  .order-page-steps h3 { margin: 0 10px 7px; font-size: 18px; }
  .order-page-step-visual { height: 100%; min-height: 130px; aspect-ratio: auto; }
  .order-guide-actions { flex-direction: column; }
  .order-guide-actions .button { width: 100%; }
  .contact-route-card { min-height: 270px; }
  .contacts-facts-band { grid-template-columns: 1fr; }
  .contacts-facts-band article + article { border-left: 0; border-top: 1px solid rgba(81,103,199,.18); }
}

@media (max-width: 480px) {
  .about-story-cloud,
  .order-guide-cloud,
  .contacts-showcase { padding: 42px 21px; }
  .about-collage { padding: 7px; gap: 7px; border-radius: 28px 38px 31px 42px / 36px 28px 41px 32px; }
  .about-collage-photo { border-radius: 15px; }
  .about-principles-grid { grid-template-columns: 1fr; }
  .about-choice-band { padding: 34px 24px; }
  .order-page-steps > li { grid-template-columns: 1fr; text-align: center; }
  .order-page-step-visual { min-height: 0; aspect-ratio: 16 / 9; }
  .order-page-steps h3 { margin-top: 15px; }
  .order-guide-tags { display: grid; }
  .contacts-showcase-copy h2 { font-size: 36px; }
  .contacts-showcase-copy .custom-order-messengers { width: 100%; }
  .contacts-showcase-copy .custom-order-messenger { min-width: 0; flex: 1 1 0; }
}

/* Stable layout repair for the three editorial pages. The visible card is
   now the real content box, so copy can never escape a decorative mask. */
.about-page,
.order-page,
.contacts-page {
  --editorial-border: rgba(255,255,255,.96);
  --editorial-shadow: inset 0 1px 0 rgba(255,255,255,.98), 0 18px 38px rgba(38,50,74,.13);
}

.about-page *,
.order-page *,
.contacts-page * { min-width: 0; }

.about-page h1,.about-page h2,.about-page h3,
.order-page h1,.order-page h2,.order-page h3,
.contacts-page h1,.contacts-page h2,.contacts-page h3 {
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: none;
}

.about-page-hero,
.order-page-hero,
.contacts-page-hero { padding-bottom: 34px; }

.about-intro-section,
.order-guide-section,
.contacts-showcase-section { padding-top: 8px; }

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

.about-story-cloud,
.order-guide-cloud,
.contacts-showcase {
  overflow: hidden;
  border: 1px solid var(--editorial-border);
  border-radius: 48px 58px 50px 62px / 56px 46px 60px 49px;
  background:
    radial-gradient(circle at 8% 8%,rgba(255,255,255,.94) 0 52px,transparent 53px),
    radial-gradient(circle at 90% 4%,rgba(220,245,249,.72) 0 70px,transparent 71px),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(226,247,250,.94) 56%,rgba(226,236,255,.94));
  box-shadow: var(--editorial-shadow);
}

.about-story-cloud::before,
.order-guide-cloud::before,
.contacts-showcase::before { display: none; }

.about-story-cloud {
  min-height: 0;
  padding: clamp(38px,4.4vw,58px);
  justify-content: flex-start;
}

.about-story-cloud h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(36px,4vw,52px);
  line-height: 1.08;
}

.about-story-cloud > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.58;
}

.about-story-cloud .about-story-lead {
  font-size: 18px;
  line-height: 1.48;
}

.about-story-facts { margin-top: 22px; gap: 10px; }
.about-story-facts li { padding: 14px 16px; border-radius: 20px; }
.about-story-facts strong { font-size: 15px; }
.about-story-facts span { font-size: 13px; }

.about-collage {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  align-self: start;
  padding: 10px;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-template-rows: repeat(2,minmax(0,1fr));
  gap: 10px;
  border-radius: 40px;
}

.about-collage-photo,
.about-collage-photo:nth-child(1),
.about-collage-photo:nth-child(2),
.about-collage-photo:nth-child(3),
.about-collage-photo:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.about-collage-photo:nth-child(1) { object-position: 50% 42%; }

.about-principles-grid,
.order-info-grid,
.contact-route-grid { align-items: stretch; }

.about-principle,
.contact-route-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--editorial-border);
  border-radius: 32px;
  background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(225,246,250,.86));
  box-shadow: var(--editorial-shadow);
}

.about-principle {
  min-height: 235px;
  padding: 36px 26px 32px;
}

.about-principle::before,
.contact-route-card::before { display: none; }

.about-principle h3,.about-principle p,
.contact-route-card h3,.contact-route-card p { width: 100%; }

.about-choice-band,
.contacts-facts-band { overflow: hidden; }

.about-choice-band > div,
.about-choice-band .hero-actions { min-width: 0; }

.about-choice-band .button,
.order-guide-actions .button,
.contacts-showcase .custom-order-messenger {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.order-guide-cloud {
  min-height: 0;
  padding: clamp(40px,5vw,62px);
}

.order-guide-header { max-width: 760px; margin-bottom: 24px; }
.order-guide-header h2 { font-size: clamp(38px,4.5vw,56px); line-height: 1.08; }
.order-page-steps { align-items: stretch; gap: 14px; }

.order-page-steps > li {
  height: 100%;
  padding: 10px 10px 24px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
}

.order-page-step-visual {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  border-radius: 21px;
}

.order-page-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.order-page-steps h3 {
  width: 100%;
  margin: 18px 10px 9px;
  font-size: 20px;
  line-height: 1.22;
}

.order-page-steps p {
  width: auto;
  margin: 0 10px;
  font-size: 15px;
  line-height: 1.5;
}

.order-guide-tags li { font-size: 14px; line-height: 1.35; text-align: center; }

.order-info-card {
  height: 100%;
  padding: 34px 28px;
  border-radius: 30px;
}

.order-info-card h3 { font-size: 24px; line-height: 1.2; }
.order-info-card p { font-size: 15px; line-height: 1.54; }

.contacts-showcase {
  min-height: 0;
  padding: clamp(42px,5vw,66px);
  grid-template-columns: minmax(0,1.08fr) minmax(300px,.92fr);
  gap: clamp(28px,4vw,48px);
}

.contacts-showcase-copy h2 {
  width: 100%;
  font-size: clamp(38px,4.3vw,54px);
  line-height: 1.08;
}

.contacts-showcase-copy > p:not(.eyebrow) { font-size: 16px; line-height: 1.58; }

.contacts-message-box {
  width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
}

.contacts-message-box strong {
  font-size: clamp(18px,2.2vw,22px);
  line-height: 1.25;
}

.contacts-showcase-copy .custom-order-messengers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}

.contacts-showcase-copy .custom-order-messenger {
  width: 100%;
  min-width: 0;
}

.contacts-showcase-visual {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border-radius: 30px;
}

.contacts-showcase-visual > .product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contacts-showcase-daisy { right: 12px; bottom: 12px; }

.contact-route-card {
  min-height: 280px;
  padding: 38px 30px 32px;
}

.contact-route-card h3 { font-size: 23px; line-height: 1.22; }
.contact-route-card p { font-size: 15px; line-height: 1.5; }
.contacts-facts-band strong,.contacts-facts-band span { overflow-wrap: break-word; }

@media (max-width: 980px) {
  .about-intro-grid,
  .contacts-showcase { grid-template-columns: 1fr; }
  .about-story-cloud { min-height: 0; }
  .about-collage { width: min(100%,700px); }
  .contacts-showcase-copy { width: 100%; max-width: 700px; }
  .contacts-showcase-visual { width: min(100%,500px); max-width: 500px; }
}

@media (max-width: 900px) {
  .order-page-steps { grid-template-columns: 1fr; }
  .order-page-steps > li {
    display: grid;
    grid-template-columns: minmax(220px,.82fr) minmax(0,1.18fr);
    align-items: center;
    gap: 18px;
    padding: 10px 24px 10px 10px;
    text-align: left;
  }
  .order-page-steps h3,
  .order-page-steps p { margin-left: 0; margin-right: 0; text-align: left; }
}

@media (max-width: 760px) {
  .about-page-hero,.order-page-hero,.contacts-page-hero { padding-bottom: 18px; }
  .about-story-cloud,.order-guide-cloud,.contacts-showcase {
    padding: 34px 24px;
    border-radius: 34px;
  }
  .about-story-cloud,.about-story-cloud h2,
  .contacts-showcase-copy,.contacts-showcase-copy h2 { text-align: center; }
  .about-principles-grid,.order-info-grid,.contact-route-grid { grid-template-columns: 1fr; }
  .about-principle,.contact-route-card { min-height: 0; }
}

@media (max-width: 560px) {
  .about-page-hero h1,.order-page-hero h1,.contacts-page-hero h1 {
    font-size: clamp(38px,12vw,54px);
    line-height: 1.05;
  }
  .about-story-cloud,.order-guide-cloud,.contacts-showcase {
    padding: 30px 18px;
    border-radius: 28px;
  }
  .about-story-cloud h2,.order-guide-header h2,.contacts-showcase-copy h2 {
    font-size: clamp(31px,9.4vw,42px);
    line-height: 1.08;
  }
  .about-story-cloud > p:not(.eyebrow),
  .about-story-cloud .about-story-lead,
  .contacts-showcase-copy > p:not(.eyebrow) { font-size: 15px; }
  .about-story-facts li { padding: 13px 14px; }
  .about-collage { padding: 7px; gap: 7px; border-radius: 25px; }
  .about-collage-photo,
  .about-collage-photo:nth-child(1),
  .about-collage-photo:nth-child(2),
  .about-collage-photo:nth-child(3),
  .about-collage-photo:nth-child(4) { border-radius: 16px; }
  .about-choice-band { padding: 30px 20px; border-radius: 28px; }
  .order-page-steps > li { display: flex; padding: 9px 9px 22px; text-align: center; }
  .order-page-steps h3,.order-page-steps p {
    margin-left: 8px;
    margin-right: 8px;
    text-align: center;
  }
  .order-guide-tags,.order-guide-tags li { width: 100%; }
  .order-info-card,.contact-route-card { padding: 30px 22px; border-radius: 26px; }
  .contacts-showcase-copy .custom-order-messengers { grid-template-columns: 1fr; }
  .contacts-message-box strong { font-size: 18px; }
  .contacts-showcase-visual { border-radius: 24px; }
  .contacts-facts-band { padding: 20px; border-radius: 26px; }
}

/* September page refresh: clean navigation, exact frames and editorial pages. */
.site-header { padding-top: 16px; }

.nav-shell {
  width: min(1320px, calc(100% - 24px));
  min-height: 76px;
  padding: 8px 10px 8px 20px;
  overflow: hidden;
  isolation: isolate;
  gap: 12px;
  background: linear-gradient(105deg,rgba(255,255,255,.82),rgba(221,242,250,.7) 48%,rgba(255,255,255,.82));
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 30px 44px 32px 46px / 26px 38px 29px 42px;
  box-shadow: inset 0 1px 0 white, 0 14px 34px rgba(38,50,74,.14);
  backdrop-filter: blur(22px) saturate(1.12);
}

.nav-shell::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center / cover no-repeat;
  opacity: .34;
  pointer-events: none;
}
.brand-logo-nav { width: 186px; max-height: 62px; }

.nav-links {
  margin-inline: auto;
  padding: 5px 6px;
  gap: 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #26324a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
}

.nav-links a::before { display: none; }
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255,255,255,.72);
  color: #26324a;
  transform: none;
}

.search-trigger,
.search-trigger:hover,
.search-trigger:focus-visible {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 2px solid #26324a !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.84) !important;
  color: #26324a;
  box-shadow: inset 0 1px 0 white, 0 8px 18px rgba(38,50,74,.12) !important;
}

.search-trigger:hover { transform: translateY(-2px) scale(1.04); }
.search-trigger:focus-visible { outline: 3px solid rgba(81,103,199,.24); outline-offset: 3px; }
.search-trigger svg { width: 21px; height: 21px; stroke: currentColor; }

/* Equal space on both sides of search, between Contacts and the cart. */
@media (min-width: 861px) {
  .nav-shell { column-gap: 16px; }
  .nav-shell .nav-links { margin-right: 0; padding-right: 0; }
  .nav-shell .search-trigger { margin-inline: 0; }
}

.hero-cloud-catalog::before,
.hero-cloud-custom::before { background: var(--ink); }

.button.secondary.order-custom-order-button,
.button.secondary.order-custom-order-button:hover,
.button.secondary.order-custom-order-button:focus-visible {
  --action-cloud-fill: var(--brand-blue);
  border-color: transparent;
  color: white;
}

/* The frame asset is cropped and slightly overscanned so no cyan fringe or
   photograph can remain outside the visible resin edge. */
.product-media.catalog-framed,
.product-framed,
.search-product-frame {
  overflow: hidden;
  background: transparent;
  border-radius: 4.2%;
}

.product-media.catalog-framed > .floral-frame,
.product-framed > .floral-frame,
.search-product-frame > .floral-frame,
.category-preview-panel > .floral-frame {
  inset: -.7%;
  width: 101.4%;
  height: 101.4%;
}

/* About: the story and the four-image collage share the same exact bounds. */
.about-intro-grid { align-items: stretch; }
.about-story-cloud,
.about-collage {
  height: 100%;
  min-height: 640px;
  align-self: stretch;
}

.about-collage {
  aspect-ratio: auto;
  grid-template-rows: repeat(2,minmax(0,1fr));
  background: rgba(255,255,255,.86);
  border-color: transparent;
  box-shadow: none;
}

.about-collage-maker { object-position: 50% 45% !important; }

/* Order page: the supplied vertical illustrations remain complete and equal. */
.order-guide-cloud { padding: clamp(40px,4.8vw,62px); }
.order-page-steps {
  grid-template-columns: repeat(3,minmax(0,1fr));
  align-items: stretch;
  gap: clamp(14px,2vw,22px);
}

.order-page-steps > li {
  height: 100%;
  padding: 9px 9px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 28px;
  background: rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 white, 0 12px 24px rgba(38,50,74,.1);
  text-align: center;
}

.order-page-step-visual {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #dcefff;
  box-shadow: none;
}

.order-page-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.order-page-step-copy {
  min-height: 70px;
  padding: 16px 14px 0;
  display: grid;
  place-items: center;
}

.order-page-step-copy p,
.order-page-steps p {
  width: 100%;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

/* Contacts: a responsive reconstruction of the supplied reference. */
.contacts-reference-layout {
  grid-template-columns: minmax(340px,1.02fr) minmax(0,.98fr);
  align-items: center;
  gap: clamp(32px,4.5vw,58px);
}

.contacts-maker-visual {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.88);
  border-radius: 76px 108px 82px 116px / 96px 72px 112px 80px;
  background: white;
  box-shadow: 0 22px 42px rgba(38,50,74,.16);
}

.contacts-maker-visual > .product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contacts-showcase-copy { text-align: left; }
.contacts-showcase-copy h2 { margin: 8px 0 24px; text-align: left; }

.contacts-method-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.contacts-method-card {
  min-height: 108px;
  padding: 17px;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.96);
  border-radius: 30px 38px 32px 42px / 34px 28px 40px 31px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 white, 0 10px 22px rgba(38,50,74,.1);
}

a.contacts-method-card { transition: transform .2s ease, background .2s ease; }
a.contacts-method-card:hover,
a.contacts-method-card:focus-visible { transform: translateY(-3px); background: white; outline: none; }

.contacts-method-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg,#82c7eb,#5167c7);
  color: white;
  box-shadow: 0 8px 16px rgba(81,103,199,.22);
}

.contacts-method-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-method-icon.telegram svg,
.contacts-method-icon.vk svg { fill: currentColor; stroke: none; }
.contacts-method-card > span:nth-child(2) { min-width: 0; }
.contacts-method-card strong { display: block; color: var(--ink); font-size: 17px; line-height: 1.2; }
.contacts-method-card small { display: block; margin-top: 6px; color: var(--brand-blue); font-size: 12px; line-height: 1.28; }
.contacts-method-card b { color: var(--brand-blue); font-family: sans-serif; font-size: 21px; font-weight: 400; }

.contacts-reference-layout .contacts-message-box {
  margin-top: 14px;
  background: rgba(255,255,255,.72);
}

.contacts-primary-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.contacts-primary-actions .button {
  width: 100%;
  min-height: 58px;
  padding-inline: 18px;
}

@media (max-width: 1180px) {
  .nav-shell { gap: 10px; }
  .brand-logo-nav { width: 150px; }
  .nav-links a { padding-inline: 9px; font-size: 13px; }
}

@media (max-width: 980px) {
  .about-story-cloud,
  .about-collage { min-height: 0; }
  .about-collage { aspect-ratio: 1; align-self: auto; }
  .contacts-reference-layout { grid-template-columns: 1fr; }
  .contacts-maker-visual { max-width: 620px; margin: 0 auto; }
  .contacts-showcase-copy { max-width: 720px; margin: 0 auto; text-align: center; }
  .contacts-showcase-copy h2 { text-align: center; }
}

@media (max-width: 900px) {
  .order-page-steps { grid-template-columns: 1fr; }
  .order-page-steps > li {
    display: grid;
    grid-template-columns: minmax(190px,240px) minmax(0,1fr);
    align-items: center;
    padding: 9px 24px 9px 9px;
  }
  .order-page-step-copy { min-height: 0; padding: 18px; }
  .order-page-step-copy p { text-align: left; }
}

@media (max-width: 860px) {
  .nav-shell { width: calc(100% - 16px); min-height: 62px; padding: 8px 10px 8px 14px; flex-wrap: wrap; }
  .nav-shell .brand { margin-right: auto; }
  .brand-logo-nav { width: 138px; }
  .nav-links {
    order: 3;
    width: 100%;
    margin: 7px 0 0;
    padding: 8px;
    border-radius: 28px;
    background: rgba(255,255,255,.68);
  }
  .nav-links a { padding: 12px 14px; font-size: 15px; }
}

@media (max-width: 620px) {
  .order-page-steps > li { display: flex; padding: 8px 8px 21px; }
  .order-page-step-copy { padding: 15px 12px 0; }
  .order-page-step-copy p { text-align: center; }
  .contacts-method-grid,
  .contacts-primary-actions { grid-template-columns: 1fr; }
  .contacts-method-card { min-height: 92px; }
  .contacts-maker-visual { border-width: 5px; border-radius: 42px 58px 46px 64px / 52px 40px 60px 44px; }
}

/* September plan: cloud navigation and product configurators. */
.nav-links a {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border-radius: 0;
}
.nav-links a::before {
  display: block;
  content: "";
  position: absolute;
  inset: -7px -10px;
  z-index: -1;
  opacity: 0;
  background: rgba(255,255,255,.82);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  transform: scale(.9);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] { background: transparent; }
.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a[aria-current="page"]::before { opacity: 1; transform: scale(1); }
.nav-links a[aria-current="page"] { color: white; }
.nav-links a[aria-current="page"]::before { background: var(--ink); }

.about-collage {
  padding: 0;
  gap: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.visual-color-picker {
  padding: 16px;
  border: 1px solid rgba(81,103,199,.16);
  border-radius: 28px;
  background: rgba(232,246,255,.58);
}
.visual-color-picker legend {
  padding: 0 8px;
  color: var(--brand-blue);
  font-size: 16px;
}
.color-chart-gallery {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,220px),1fr));
  gap: 10px;
}
.color-chart-gallery img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 24px rgba(38,50,74,.1);
}
.visual-color-picker .color-options { grid-template-columns: repeat(6,minmax(0,1fr)); }

.product-choice-grid {
  margin: 0;
  padding: 0;
  border: 0;
}
.product-size-picker {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(38,50,74,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}
.product-size-picker legend { padding-inline: 8px; color: var(--ink); font-size: 16px; }
.product-size-picker .size-standard { margin: 0 0 14px; font-size: 14px; line-height: 1.5; }
.product-size-picker .field-grid { margin-bottom: 12px; grid-template-columns: repeat(auto-fit,minmax(min(100%,190px),1fr)); }
.product-size-picker .field { min-width: 0; }
.product-size-picker .field select { width: 100%; min-width: 0; padding-inline: 10px; font-size: 14px; }
.product-size-picker .field small { font-size: 13px; line-height: 1.4; color: var(--ink-soft); }
.product-size-picker .option-help { font-size: 14px; line-height: 1.5; }
.size-price-summary { display: block; margin-top: 12px; color: var(--brand-blue); font-size: 16px; line-height: 1.4; overflow-wrap: anywhere; }
.cart-size-warning { color: #92342f; }
.cart-size-warning a { text-decoration: underline; }
.product-choice-grid legend { margin-bottom: 10px; font-size: 13px; font-weight: 800; }
.product-choice-cards {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
}
.product-choice-cards label {
  position: relative;
  min-width: 0;
  padding: 11px 7px;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(38,50,74,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}
.product-choice-cards input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.product-choice-cards svg { width: 38px; height: 38px; fill: none; stroke: var(--brand-blue); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.product-choice-cards label:has(input:checked) { background: var(--ink); color: white; box-shadow: 0 8px 18px rgba(38,50,74,.18); }
.product-choice-cards label:has(input:checked) svg { stroke: white; }
.product-choice-cards .mounting-photo {
  display: block;
  width: 100%;
  max-width: 128px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 14px;
}
.product-choice-cards label:has(input:focus-visible) {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
}
.option-help { margin: -2px 0 2px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.contact-route-button { width: 100%; font: inherit; text-align: left; cursor: pointer; }
.detail-price { overflow-wrap: anywhere; }

@media (max-width: 620px) {
  .visual-color-picker { padding: 12px 10px; }
  .visual-color-picker .color-options { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .product-choice-cards { grid-template-columns: 1fr; }
  .product-choice-cards label { grid-template-columns: 72px minmax(0,1fr); justify-items: start; align-items: center; gap: 14px; text-align: left; }
  .field-grid { grid-template-columns: 1fr; }
}

/* September 7: contained clouds, reference-led colour selection and safer labels. */
@media (min-width: 861px) {
  .nav-links { gap: clamp(8px,1vw,13px); }
}

.nav-links a {
  z-index: 0;
  padding: 12px 13px;
  transform: none !important;
}

.nav-links a::before {
  inset: -2px 0;
  background: rgba(255,255,255,.76);
  transform: none !important;
  filter: drop-shadow(0 5px 8px rgba(38,50,74,.1));
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"]::before {
  background: rgba(255,255,255,.84);
}

.button {
  min-height: 64px;
  padding: 19px 32px 17px;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

.button::before { inset: -6px -8px; }

.button:hover,
.button:focus-visible {
  transform: none !important;
}

.button:hover::before,
.button:focus-visible::before {
  transform: none !important;
  filter: drop-shadow(0 12px 18px rgba(38,50,74,.2));
}

.order-guide-actions { padding-block: 8px; }
.order-guide-actions .button { transition: transform .2s ease, filter .2s ease; }
.order-guide-actions .button:hover,
.order-guide-actions .button:focus-visible { transform: translateY(-4px) !important; filter: brightness(1.08); }
@media (prefers-reduced-motion: reduce) {
  .order-guide-actions .button { transition: none; }
  .order-guide-actions .button:hover,
  .order-guide-actions .button:focus-visible { transform: none !important; }
}

.hero-actions,
.detail-actions,
.order-guide-actions { gap: 18px; }

.hero-actions .button,
.home-individual-actions .button,
.note-delivery-button,
.order-guide-actions .button,
.detail-actions .button {
  min-width: 190px;
  padding-inline: 36px;
}

.benefit-list { gap: 18px; }

.benefit-list li {
  min-height: 58px;
  padding: 18px 24px 16px;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.benefit-list li::before { inset: -5px -7px; }

.name-cloud {
  --cloud-inset: 0;
  min-height: 144px;
  padding: 38px 28px 34px;
  overflow: visible;
}

.product-card h3 {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.card-bottom { gap: 14px; padding-top: 15px; }

.card-select {
  --cloud-inset: 0;
  min-width: 124px;
  min-height: 62px;
  padding: 20px 22px 17px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transform: none !important;
}

.card-select:hover,
.card-select:focus-visible { transform: none !important; }

.card-select:hover::before,
.card-select:focus-visible::before { transform: none !important; }

/* Nine-slice cloud keeps the curved caps fixed while the text area grows. */
.product-about-card {
  height: auto;
  padding: 74px 18%;
  overflow: visible;
}

.product-about-card::before {
  inset: 0;
  background: none;
  -webkit-mask: none;
  mask: none;
  border: 0 solid transparent;
  border-image-source: url("/assets/sloenka-cloud-shape-full.svg");
  border-image-slice: 60 80 fill;
  border-image-width: 68px 16%;
  border-image-repeat: stretch;
  opacity: .9;
}

.product-about-card h2,
.product-about-card p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.main-image > .color-chart-slide,
.main-image > .instruction-slide {
  object-fit: contain;
  object-position: center;
  background: rgba(224,243,255,.92);
}

.thumb.color-chart-thumb,
.thumb.instruction-thumb { background: rgba(224,243,255,.9); }
.thumb.color-chart-thumb img,
.thumb.instruction-thumb img { object-fit: contain; }

.visual-color-picker {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: visible;
  margin: 4px 0;
  padding: 18px 16px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.visual-color-picker::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.9);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 12px 24px rgba(38,50,74,.13));
}

.visual-color-picker legend {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 26px 5px;
  display: grid;
  gap: 5px;
  color: var(--brand-blue);
  text-align: center;
}

.visual-color-picker legend::after {
  content: "♡";
  width: 76%;
  margin: 5px auto 0;
  display: block;
  overflow: hidden;
  border-top: 1px solid rgba(23,64,156,.55);
  color: var(--brand-blue);
  font: 22px/12px Georgia,serif;
}

.visual-color-picker legend > span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.04;
}

.visual-color-picker legend > small {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.color-picker-daisy {
  position: absolute;
  z-index: 1;
  top: 15px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 7px 9px rgba(38,50,74,.15));
}

.color-picker-daisy-left { left: 20px; transform: rotate(-14deg); }
.color-picker-daisy-right { right: 20px; transform: rotate(13deg); }

.visual-color-picker .color-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 4px 8px;
}

.visual-color-picker .color-option {
  min-width: 0;
  min-height: 57px;
  padding: 3px 2px;
  display: grid;
  grid-template-rows: 26px minmax(26px,auto);
  align-items: start;
  justify-items: center;
  gap: 3px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  overflow: visible;
  transform: none !important;
  box-shadow: none;
}

.visual-color-picker .color-option > span:last-child {
  width: 100%;
  min-height: 2.2em;
  display: grid;
  place-items: center;
  overflow-wrap: anywhere;
}

.visual-color-picker .color-swatch {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(38,50,74,.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.4),transparent 48%,rgba(0,0,0,.08)),
    repeating-linear-gradient(135deg,transparent 0 6px,rgba(255,255,255,.18) 6px 9px,rgba(0,0,0,.07) 9px 11px),
    var(--swatch);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.55),0 7px 13px rgba(38,50,74,.15);
  transform: none;
  transition: transform .18s ease, box-shadow .18s ease, outline-color .18s ease;
}

.visual-color-picker .color-option:hover,
.visual-color-picker .color-option:has(input:checked):hover,
.visual-color-picker .color-option:has(input:checked) {
  background: transparent;
  color: var(--brand-blue);
  transform: none !important;
  box-shadow: none;
}

.visual-color-picker .color-option:hover .color-swatch { transform: scale(1.035); }

.visual-color-picker .color-option:has(input:checked) .color-swatch {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,.55),0 9px 17px rgba(38,50,74,.22);
}

.visual-color-picker .color-picker-note {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: 100%;
  min-height: 0;
  margin: 7px auto 0;
  padding: 5px 12px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.32;
  text-align: center;
}

.visual-color-picker .color-picker-note::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.9);
  -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 15px rgba(38,50,74,.12));
}

.about-collage-frame {
  object-fit: cover !important;
  object-position: center;
  transform: none;
}

.about-choice-heading { margin-bottom: 20px; text-align: center; }
.frame-color-page { min-width: 0; margin: 0; padding: 0; border: 0; }
.frame-color-page[hidden] { display: none !important; }
.frame-color-pages .color-options { padding: 8px; }
.frame-color-navigation { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 12px; }
.frame-color-navigation button { display: grid; place-items: center; width: 42px; height: 42px; padding: 8px; border: 2px solid #102d78; border-radius: 50%; background: transparent; color: #102d78; cursor: pointer; }
.frame-color-navigation button:hover { background: rgba(196,221,255,.65); }
.frame-color-navigation button:focus-visible { outline: 2px solid #102d78; outline-offset: 3px; }
.frame-color-navigation svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.frame-color-counter { min-width: 48px; color: #102d78; font-size: 15px; text-align: center; }
.puzzle-options, .puzzle-inscriptions { display: grid; gap: 14px; min-width: 0; }
.puzzle-inscription { min-width: 0; margin: 0; padding: 0; border: 0; }
.puzzle-inscription[hidden] { display: none !important; }
.about-choice-heading h2 { margin: 0; font-family: var(--font-display); color: var(--brand-blue); font-size: clamp(28px,4vw,48px); line-height: 1.18; text-wrap: balance; }
.about-choice-heading p { margin: 14px 0 0; font-family: var(--font-body); color: var(--ink-soft); font-size: clamp(16px,2vw,20px); line-height: 1.45; }
.about-choice-tiles { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; padding-block: 6px; }
.about-choice-tile {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  min-height: 210px;
  padding: clamp(28px,4vw,44px) clamp(24px,3.5vw,42px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 32px;
  background: linear-gradient(130deg,rgba(255,255,255,.94),rgba(220,242,255,.9));
  box-shadow: inset 0 1px 0 white,0 12px 28px rgba(38,50,74,.12);
  color: var(--brand-blue);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.about-choice-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: url("/assets/sloenka-dried-flowers-scatter-v15.webp") center / 560px auto repeat;
  opacity: .1;
  pointer-events: none;
}
.about-choice-title { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); line-height: 1.2; overflow-wrap: anywhere; }
.about-choice-description { color: var(--ink-soft); font-size: 16px; line-height: 1.5; overflow-wrap: anywhere; }
.about-choice-tile:hover { transform: translateY(-4px); border-color: var(--brand-blue); box-shadow: inset 0 1px 0 white,0 18px 32px rgba(38,50,74,.2); }
.about-choice-tile:focus-visible { outline: 3px solid var(--brand-blue); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { .about-choice-tile { transition: none; } .about-choice-tile:hover { transform: none; } }

@media (max-width: 860px) {
  .nav-links { gap: 8px; }
  .nav-links a::before { inset: -1px 0; }
  .hero-actions .button,
  .home-individual-actions .button,
  .note-delivery-button,
  .order-guide-actions .button,
  .detail-actions .button { min-width: 0; }
}

@media (max-width: 620px) {
  .button { min-height: 62px; padding: 18px 26px 16px; }
  .name-cloud { min-height: 158px; padding: 41px 16px 37px; }
  .product-card h3 { font-size: 13px; line-height: 1.32; }
  .card-bottom { gap: 11px; }
  .card-select { width: 100%; min-height: 60px; padding: 19px 16px 16px; }
  .visual-color-picker { padding: 18px 10px 16px; }
  .visual-color-picker legend { margin-bottom: 10px; padding-inline: 24px; }
  .visual-color-picker legend > span { font-size: 22px; }
  .visual-color-picker legend > small { font-size: 10px; letter-spacing: .15em; }
  .color-picker-daisy { top: 15px; width: 23px; height: 23px; }
  .color-picker-daisy-left { left: 9px; }
  .color-picker-daisy-right { right: 9px; }
  .visual-color-picker .color-options { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 4px 6px; }
  .visual-color-picker .color-option { min-height: 57px; grid-template-rows: 26px minmax(26px,auto); font-size: 12px; }
  .visual-color-picker .color-swatch { width: 26px; height: 26px; }
  .visual-color-picker .color-picker-note { padding-inline: 6px; }
  .about-choice-tiles { grid-template-columns: 1fr; gap: 16px; }
  .about-choice-tile { min-height: 175px; border-radius: 26px; }
}

/* The story sets the row height; photographs cannot stretch or shrink it. */
.about-intro-grid { align-items: stretch; }
.about-story-cloud { height: auto; min-height: 0; }
.about-collage {
  contain: size;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  min-width: 0;
  aspect-ratio: auto;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-template-rows: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.about-collage-tile {
  container: about-photo / size;
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.6);
}
.about-collage .about-collage-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  box-shadow: none;
}
.about-collage .about-collage-maker { object-position: center !important; }
.about-collage-square { display: none; }
/* Keep the entire subject visible even when enlarged text makes a cell unusually tall. */
@container about-photo (max-aspect-ratio: 8/15) {
  .about-collage-photo { object-fit: contain !important; }
}
@container about-photo (min-aspect-ratio: 8/9) {
  .about-collage-photo { display: none; }
  .about-collage-square { display: block; object-fit: cover !important; }
}
@container about-photo (min-aspect-ratio: 10/9) {
  .about-collage-square { object-fit: contain !important; }
}
.about-collage .about-collage-current { display: block; object-fit: contain !important; }
@media (max-width: 1200px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-collage {
    contain: none;
    aspect-ratio: 2 / 3;
    align-self: start;
  }
}
@media (max-width: 620px) {
  .about-collage { gap: 8px; }
  .about-collage-tile { border-radius: 16px; }
}
.price-cloud.price-on-request {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 20px 15px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
.price-on-request > span { display: block; white-space: nowrap; }

/* Switch/socket configuration is shared between catalogue tiles and detail pages. */
.plate-options {
  min-width: 0;
  margin: 14px 0 4px;
  padding: 14px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(81,103,199,.35);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}
.plate-options legend {
  max-width: 100%;
  padding-inline: 6px;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.35;
}
.plate-options .field { font-size: 14px; line-height: 1.4; }
.plate-options .field > span { overflow-wrap: anywhere; }
.plate-options select { min-width: 0; min-height: 44px; padding: 9px 10px; border-radius: 13px; font-size: 14px; }
.plate-options [hidden] { display: none !important; }
.plate-options-detail { margin-top: 0; padding: 18px; }

.detail-panel:has(.plate-size-selection) { position: static; }
.plate-size-selection {
  container-type: inline-size;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #13296a;
}
.plate-size-selection [hidden] { display: none !important; }
.plate-size-selection > header { margin: 2px 4px 20px; text-align: center; }
.plate-size-selection h2 { margin: 0 0 8px; font-size: clamp(24px, 5cqi, 34px); line-height: 1.2; }
.plate-size-selection header p { margin: 0; font-size: 14px; line-height: 1.5; }
.plate-size-cards { display: grid; gap: 16px; }
.plate-size-card {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 2px solid white;
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 20px rgba(45,102,177,.08);
}
.plate-size-card > legend { max-width: 100%; padding: 6px 10px; border-radius: 16px; background: white; font-size: 18px; line-height: 1.35; }
.plate-size-description { margin: 0 0 12px; font-size: 14px; line-height: 1.5; }
.plate-size-fields { display: grid; gap: 13px; }
.plate-size-selection .field { min-width: 0; font-size: 14px; line-height: 1.5; font-weight: 400; color: #13296a; }
.plate-size-selection .field input { min-width: 0; min-height: 44px; padding: 10px 12px; font-size: 16px; border-radius: 13px; border-color: #d2dcf2; background: #f9fbff; }
.plate-size-selection .field input:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 2px; }
.plate-size-selection .field input[aria-invalid="true"] { border-color: #b73f45; }
.switch-key-picker { min-width: 0; margin: 0 0 16px; padding: 0; border: 0; }
.switch-key-picker legend { margin-bottom: 9px; font-size: 14px; line-height: 1.5; }
.switch-key-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.switch-key-options label { position: relative; cursor: pointer; }
.switch-key-options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.switch-key-options span { display: grid; place-items: center; gap: 5px; min-height: 96px; padding: 6px 3px; border: 1px solid #dbe4f5; border-radius: 13px; background: #edf4fd; font-size: 16px; }
.switch-key-options img { width: 60px; height: 60px; max-width: 100%; object-fit: contain; border-radius: 12px; }
.switch-key-options small { font-size: 14px; line-height: 1.3; text-align: center; }
.switch-key-options input:checked + span { color: white; border-color: var(--brand-blue); background: var(--brand-blue); }
.switch-key-options input:focus-visible + span { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.plate-size-note { margin-top: 16px; padding: 16px; border: 1px solid white; border-radius: 24px; background: rgba(255,255,255,.94); }
.plate-size-note h3 { margin: 0 0 10px; font-size: 18px; }
.plate-size-note p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; }
.plate-size-error { margin: 14px 0 0; padding: 12px; border-radius: 12px; color: #8a2630; background: #fff4f3; font-size: 14px; line-height: 1.5; }
@container (min-width: 540px) {
  .plate-size-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .plate-size-card:only-child, .plate-size-card:has(+ [hidden]), .plate-size-card[hidden] + .plate-size-card { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .plate-options-catalog { padding: 10px 7px; border-radius: 16px; }
  .plate-options-catalog select { padding-inline: 5px; }
}

/* The catalogue picker uses the top layer, so choosing a variant never resizes a row. */
.plate-popover {
  position: fixed;
  inset: auto;
  margin: 0;
  width: min(320px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 30px 14px 16px;
  border: 1px solid rgba(81,103,199,.42);
  border-radius: 24px;
  background: rgba(244,250,255,.98);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(38,50,74,.2);
}
.plate-popover::backdrop { background: transparent; }
.plate-popover-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--brand-blue);
  cursor: pointer;
}
.plate-popover-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.plate-popover .plate-options { margin: 0; padding: 10px 0; border: 0; background: transparent; }
.plate-popover .plate-options legend { padding: 0; }
.plate-open-product {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 16px;
  background: var(--brand-blue);
  color: white;
  font-size: 14px;
  text-align: center;
}
.plate-open-product:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
button.card-select { cursor: pointer; }

/* Equal side columns keep the page links centred in the floral header itself. */
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; min-width: 0; }
@media (min-width: 1240px) {
  .nav-shell { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 12px; padding-inline: 20px; }
  .nav-shell .brand { justify-self: start; }
  .nav-shell .nav-links { margin: 0; padding: 5px 0; justify-content: center; gap: 8px; }
  .nav-shell .nav-links a { padding-inline: 10px; }
  .nav-actions { justify-self: end; }
}
@media (min-width: 861px) and (max-width: 1239px) {
  .nav-shell { display: grid; grid-template-columns: minmax(0,1fr) auto; padding-inline: 20px; gap: 4px 16px; }
  .nav-shell .brand { justify-self: start; }
  .nav-actions { grid-column: 2; grid-row: 1; justify-self: end; }
  .nav-shell .nav-links { grid-column: 1 / -1; grid-row: 2; margin: 0; padding: 4px 0; justify-content: center; flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 860px) {
  .nav-shell { padding-inline: 10px; }
  .nav-actions { gap: 8px; }
  .nav-shell .nav-links { margin-inline: 0; text-align: center; }
}
@media (max-width: 560px) {
  .nav-shell .brand { padding-inline: 4px; }
  .brand-logo-nav { width: 104px; }
  .nav-shell .menu-toggle { flex: 0 0 36px; width: 36px; }
  .nav-actions .search-trigger { width: 40px; height: 40px; flex-basis: 40px; }
}
@media (hover: none) {
  [data-gallery] .gallery-arrow { display: grid; opacity: 1; pointer-events: auto; transform: translateY(-50%) scale(1); }
  [data-gallery] .gallery-counter { opacity: 1; }
}

/* Product configuration update: compact choices and consistent blue controls. */
.nav-shell { width: min(1280px, calc(100% - 24px)); }
@media (min-width: 1240px) {
  .nav-shell { grid-template-columns: minmax(190px,1fr) auto minmax(190px,1fr); }
  .nav-shell .nav-links { justify-self: center; margin-inline: 0; }
}
@media (max-width: 860px) { .nav-shell { width: calc(100% - 16px); } }
[data-gallery] .gallery-arrow,
[data-gallery] .gallery-arrow:hover,
[data-gallery] .gallery-arrow:focus-visible { color: #102d78; border-color: #102d78; background: transparent; }
[data-gallery] .gallery-arrow svg { stroke: #102d78; stroke-width: 2.6; }
[data-gallery] .gallery-arrow:focus-visible { outline-color: #102d78; }
[data-gallery] .gallery-counter { color: var(--brand-blue); background: rgba(255,255,255,.78); }
.detail-actions [data-add-to-cart] { transition: transform .2s ease, filter .2s ease; }
.detail-actions [data-add-to-cart]:hover,
.detail-actions [data-add-to-cart]:focus-visible { transform: translateY(-4px) scale(1.025) !important; filter: brightness(1.05); }
.detail-actions [data-add-to-cart]:active { transform: translateY(-1px) scale(.99) !important; }
.coaster-colors,.pattern-picker,.key-options {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(81,103,199,.25);
  border-radius: 20px;
  background: rgba(255,255,255,.6);
}
.coaster-colors legend,.pattern-picker legend,.key-options legend { padding-inline: 5px; font-size: 16px; color: var(--brand-blue); }
.key-options { display: grid; gap: 14px; }
.key-options [hidden] { display: none !important; }
.coaster-color-input { display: flex; align-items: center; gap: 8px; min-width: 0; }
.coaster-color-preview { display: block; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--swatch); border: 1px solid rgba(38,50,74,.25); }
.coaster-color-input select { min-width: 0; }
.coaster-colors p,.format-dimensions { margin: 12px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.pattern-options { display: grid; grid-template-columns: repeat(auto-fit,minmax(85px,1fr)); gap: 10px; }
.pattern-option { position: relative; display: grid; justify-items: center; gap: 6px; padding: 12px 6px; border: 1px solid rgba(81,103,199,.3); border-radius: 16px; background: rgba(255,255,255,.75); cursor: pointer; font-size: 14px; }
.pattern-option:has(input:checked) { background: rgba(211,226,255,.85); border-color: var(--brand-blue); box-shadow: inset 0 0 0 1px var(--brand-blue); }
.pattern-option:has(input:focus-visible) { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.pattern-option input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.pattern-icon { font-size: 30px; line-height: 1.3; color: var(--brand-blue); }
@media (prefers-reduced-motion: reduce) {
  .detail-actions [data-add-to-cart] { transition: none; }
  .detail-actions [data-add-to-cart]:hover,
  .detail-actions [data-add-to-cart]:focus-visible,
  .detail-actions [data-add-to-cart]:active { transform: none !important; }
}

/* Keep search with the central navigation, independently of the right-hand cart. */
.nav-center { display: contents; }
.nav-center .search-trigger { translate: var(--search-offset-x, 0px) 0; }
@media (min-width: 861px) {
  .nav-center { display: flex; align-items: center; justify-content: center; gap: 14px; min-width: 0; }
  .nav-shell .nav-center .nav-links { flex: 0 1 auto; width: auto; margin: 0; padding-inline: 0; }
  .nav-center .search-trigger { flex: 0 0 46px; margin: 0; }
}
@media (min-width: 1240px) {
  .nav-shell { grid-template-columns: minmax(186px,1fr) auto minmax(186px,1fr); }
  .nav-center { grid-column: 2; justify-self: center; }
  .nav-shell > .nav-actions { grid-column: 3; }
}
@media (min-width: 861px) and (max-width: 1239px) {
  .nav-center { grid-column: 1 / -1; grid-row: 2; justify-self: center; }
}
@media (max-width: 560px) {
  .nav-center .search-trigger { width: 40px; height: 40px; flex-basis: 40px; }
  .nav-shell { column-gap: 6px; }
}


/* Product questions: beige cloud action and centred messenger symbols. */
.button.product-question-button {
  --action-cloud-fill: #f1dec3;
  color: #26324a;
}
.product-question-button:hover::before,
.product-question-button:focus-visible::before { background: #ead1af; }
body.product-question-is-open { overflow: hidden; }
.product-question-dialog {
  width: min(460px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 38px;
  color: var(--ink);
  background: #fff8ef;
  box-shadow: 0 24px 64px rgba(16,45,120,.24);
  overflow: auto;
}
.product-question-dialog::backdrop { background: rgba(16,35,70,.42); backdrop-filter: blur(5px); }
.product-question-content { position: relative; padding: 66px 26px 40px; text-align: center; }
.product-question-content h2 { margin: 0; font-size: clamp(26px,6vw,34px); overflow-wrap: anywhere; }
.product-question-content p { margin: 15px 0 26px; color: var(--ink-soft); line-height: 1.5; }
.product-question-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f1dec3;
  cursor: pointer;
}
.product-question-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.product-question-networks { display: flex; justify-content: center; align-items: start; gap: clamp(24px,8vw,56px); }
.product-question-network { display: grid; justify-items: center; gap: 12px; min-width: 90px; font-size: 15px; }
.product-question-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #102d78; color: white; }
.product-question-icon svg { display: block; width: 36px; height: 36px; fill: currentColor; }
.product-question-network:hover .product-question-icon { background: #244faa; }
.product-question-network:focus-visible,
.product-question-close:focus-visible { outline: 3px solid #102d78; outline-offset: 5px; border-radius: 12px; }
.messenger-icon svg,
.custom-order-messenger svg,
.contacts-method-icon svg { display: block; flex-shrink: 0; }

/* September 2026: a readable cloud, restrained controls and a compact mobile layout. */
.about-collage .about-collage-current { object-fit: cover !important; }
.button.product-question-button { --action-cloud-fill: var(--brand-blue); color: #fff; }
.product-question-button:hover::before,
.product-question-button:focus-visible::before { background: var(--brand-blue); }
.product-question-close { background: var(--brand-blue); color: white; line-height: 1; }
.product-question-close svg { display: block; margin: 0; flex-shrink: 0; }

.content-card.product-about-card {
  position: relative;
  isolation: isolate;
  display: block;
  width: calc(100% - 44px);
  max-width: 760px;
  min-height: 0;
  height: auto;
  margin: 68px auto 44px;
  padding: 36px clamp(24px,3vw,44px) 38px;
  border: 0;
  border-radius: 56px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(38,50,74,.07);
  overflow: visible;
  text-align: left;
}
.product-about-card::before,
.product-about-card::after { display: none; }
.product-about-card .info-cloud-lobe { position: absolute; z-index: -1; display: block; background: #fff; border-radius: 50%; pointer-events: none; }
.product-about-card .lobe-1 { width: 28%; height: 76px; top: -24px; left: 8%; }
.product-about-card .lobe-2 { width: 32%; height: 96px; top: -34px; left: 34%; }
.product-about-card .lobe-3 { width: 28%; height: 76px; top: -24px; right: 8%; }
.product-about-card .lobe-4 { width: 60px; height: 40%; left: -22px; top: 24%; }
.product-about-card .lobe-5 { width: 60px; height: 40%; right: -22px; top: 24%; }
.product-about-card .lobe-6 { width: 28%; height: 66px; bottom: -19px; left: 8%; }
.product-about-card .lobe-7 { width: 32%; height: 80px; bottom: -24px; left: 34%; }
.product-about-card .lobe-8 { width: 28%; height: 66px; bottom: -19px; right: 8%; }
.content-card.product-about-card > h2 {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: clamp(30px,3vw,42px);
  line-height: 1.2;
  text-align: center;
  color: var(--brand-blue);
}
.content-card.product-about-card > p {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  text-align: left;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}
.content-card.product-about-card > p:last-child { margin-bottom: 0; }
.content-card.product-about-card .photo-color-note { font-size: 14px; line-height: 1.6; }
.frame-color-navigation:has([data-frame-color-counter][aria-label$="из 1"]) { display: none; }
.quote-options-summary { width: 100%; min-height: 200px; margin-block: 16px; font: inherit; font-size: 14px; line-height: 1.6; }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .button:not(:disabled):hover,
  .button:not(:disabled):focus-visible,
  .card-select:hover,
  .card-select:focus-visible { transform: translateY(-4px) scale(1.02) !important; }
  .button:not(:disabled):hover::before,
  .button:not(:disabled):focus-visible::before,
  .card-select:hover::before,
  .card-select:focus-visible::before {
    transform: scale(1.04) !important;
    filter: drop-shadow(0 14px 18px rgba(38,50,74,.2));
  }
}
@media (prefers-reduced-motion: reduce) {
  .button,.button::before,.card-select,.card-select::before { transition: none !important; animation: none !important; }
  .button:hover,.button:focus-visible,.card-select:hover,.card-select:focus-visible { transform: none !important; }
}

@media (max-width: 620px) {
  .page-shell { width: calc(100% - 28px); }
  .section { padding-block: 36px; }
  .section-heading { gap: 14px; margin-bottom: 24px; }
  .section-heading h2,.page-hero h1 { font-size: clamp(26px,7.5vw,36px); line-height: 1.2; }
  .home-hero { gap: 22px; padding-block: 24px 12px; }
  .hero-copy { font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-actions .button { width: 100%; padding: 18px 12px; font-size: 13px; }
  .button { min-width: 0; max-width: 100%; font-size: 14px; min-height: 54px; padding: 16px 22px; }
  .button::before { inset: -3px -4px; }
  .benefit-list { gap: 6px; }
  .benefit-list li { min-height: 44px; font-size: 11px; padding: 12px 10px; }
  .hero-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; min-height: 0; max-width: 460px; padding: 0; }
  .hero-showcase .hero-photo { position: relative; inset: auto; width: 100%; height: auto; margin: 0; transform: none; aspect-ratio: 1; }
  .hero-showcase .hero-photo.main { grid-column: 1 / -1; width: 80%; justify-self: center; }
  .floating-daisy { display: none; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px 12px; }
  .product-card h3 { font-size: 13px; line-height: 1.4; }
  .name-cloud { min-height: 116px; padding: 27px 12px; }
  .card-bottom { gap: 10px; }
  .card-select { min-width: 0; min-height: 46px; padding: 14px 10px; font-size: 13px; }
  .price-cloud { min-height: 40px; padding: 11px 8px; font-size: 14px; }
  .gallery-arrow,
  .main-image .gallery-arrow,
  .card-photo .gallery-arrow {
    width: 40px; height: 44px; min-width: 0; padding: 10px;
    border: 0 !important; border-radius: 0; background: transparent !important;
    color: #102d78 !important; box-shadow: none !important; backdrop-filter: none;
  }
  .gallery-arrow::before,.gallery-arrow::after { display: none; }
  .gallery-arrow svg { width: 20px; height: 20px; stroke-width: 2.5; filter: drop-shadow(0 1px 1px white); }
  .gallery-prev { left: 0; }
  .gallery-next { right: 0; }
  .gallery-counter { font-size: 10px; padding: 3px 6px; }
  .portfolio-grid.is-mobile-collage,
  .portfolio-grid:not(.is-laid-out) { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .portfolio-grid.is-mobile-collage > .portfolio-shot,
  .portfolio-grid:not(.is-laid-out) > .portfolio-shot { aspect-ratio: 1; height: auto; width: 100%; }
  .portfolio-grid.is-mobile-collage > .portfolio-shot:first-child,
  .portfolio-grid:not(.is-laid-out) > .portfolio-shot:first-child { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
  .portfolio-shot { border-radius: 16px; }
  .detail-layout { gap: 24px; padding-top: 24px; }
  .detail-panel { padding: 22px 14px; min-width: 0; }
  .detail-panel h1 { font-size: clamp(25px,7vw,32px); line-height: 1.25; }
  .detail-price { font-size: 25px; }
  .order-options { padding: 12px 8px; }
  .order-options fieldset { min-width: 0; }
  .order-options select,.order-options input { min-width: 0; width: 100%; max-width: 100%; font-size: 16px; }
  .order-options input[type="radio"] { width: 1px; }
  .detail-actions { flex-wrap: wrap; gap: 18px; }
  .detail-actions .button { flex: 1 1 100%; }
  .product-choice-cards { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
  .product-choice-cards label { min-width: 0; padding: 8px 4px; font-size: 12px; }
  .product-choice-cards .mounting-photo { width: 100%; height: auto; max-height: 78px; object-fit: contain; }
  .content-card.product-about-card { width: calc(100% - 32px); margin-block: 54px 34px; padding: 28px 24px 30px; border-radius: 38px; }
  .product-about-card .lobe-4 { left: -16px; width: 44px; }
  .product-about-card .lobe-5 { right: -16px; width: 44px; }
  .content-card.product-about-card > h2 { font-size: 30px; margin-bottom: 20px; }
  .content-card.product-about-card > p { font-size: 16px; line-height: 1.6; }
  .content-card.product-about-card .photo-color-note { font-size: 13px; }
  .home-individual-cloud { padding: 36px 22px; gap: 24px; }
  .home-individual-cloud h2 { font-size: 30px; }
  .home-individual-actions { gap: 18px; }
  .home-individual-art { min-width: 0; width: 100%; }
  .home-individual-caption { position: static; width: 100%; margin-top: 12px; transform: none; }
  .home-category-panel { min-width: 0; max-width: 100%; }
  .field,.field span { overflow-wrap: anywhere; }
}
.brand-logo,.hero-logo,.about-brand-logo { mix-blend-mode: normal; }
.about-logo-heading { width: min(100%, 660px); margin-inline: auto; line-height: 1 !important; }
.about-brand-logo { display: block; width: 100%; height: auto; filter: drop-shadow(0 8px 16px rgba(38,50,74,.12)); }
.quote-copy-button { min-height: 44px; padding: 12px 18px; border: 0; border-radius: 16px; background: var(--brand-blue); color: white; font: inherit; font-size: 14px; cursor: pointer; }

@media (prefers-reduced-motion: no-preference) {
  .button:not(:disabled):active,.card-select:active { transform: scale(.97) !important; }
}

/* Mobile layout guardrails: keep the cloud identity without collisions. */
@media (max-width: 700px) {
  html,
  body { max-width: 100%; overflow-x: clip; }

  /* A compact, non-overlapping mobile header. It scrolls away with the page. */
  .site-header {
    position: relative;
    top: auto;
    padding: 8px 6px 0;
  }
  .nav-shell {
    width: 100%;
    min-height: 58px;
    padding: 7px 8px;
    display: grid;
    grid-template-columns: minmax(0,1fr) 36px 40px 50px;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    border-radius: 24px 30px 25px 32px / 23px 27px 25px 29px;
  }
  .nav-shell > .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    padding: 2px 4px;
  }
  .brand-logo-nav { width: clamp(92px,29vw,116px); max-height: 42px; }
  .nav-shell > .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 36px;
    height: 36px;
    min-width: 36px;
    margin: 0;
  }
  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after { width: 18px; }
  .nav-center { display: contents; }
  .nav-center .search-trigger,
  .nav-actions .search-trigger {
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 9px;
    translate: none;
  }
  .nav-center .search-trigger svg,
  .nav-actions .search-trigger svg { width: 20px; height: 20px; }
  .nav-shell > .nav-actions {
    grid-column: 4;
    grid-row: 1;
    width: 50px;
    min-width: 0;
    justify-self: end;
  }
  .nav-order {
    width: 50px;
    height: 42px;
    min-width: 50px;
    padding: 0;
    gap: 2px;
  }
  .nav-order .cart-icon { width: 18px; height: 18px; }
  .nav-shell .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    margin: 3px 0 0;
    padding: 8px;
    gap: 2px;
    border-radius: 24px;
  }
  .nav-shell .nav-links a { width: 100%; padding: 11px 12px; font-size: 14px; }

  /* The home attention images remain one composed collage, not a photo feed. */
  .home-hero { padding-top: 28px; }
  .hero-intro { padding: 18px 0 20px; }
  .hero-copy { font-size: 16px; line-height: 1.55; }
  .hero-actions { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .button { min-height: 58px; padding: 15px 10px; font-size: 13px; }
  .benefit-list { justify-content: center; gap: 8px; }
  .benefit-list li {
    width: calc(50% - 4px);
    min-height: 52px;
    padding: 13px 12px;
    display: grid;
    place-items: center;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    background: transparent;
    border: 0;
  }
  .benefit-list li:last-child { width: min(100%,290px); }
  .benefit-list li::before {
    inset: -5px -8px;
    opacity: .96;
    background: rgba(255,255,255,.9);
  }
  .hero-showcase {
    position: relative;
    display: block;
    width: 100%;
    max-width: 480px;
    height: clamp(390px,116vw,500px);
    min-height: 0;
    margin: 4px auto 0;
    padding: 0;
    isolation: isolate;
  }
  .hero-showcase::before {
    content: "";
    position: absolute;
    inset: 0 -5px;
    z-index: -1;
    background: rgba(255,255,255,.72);
    -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    filter: drop-shadow(0 14px 22px rgba(38,50,74,.12));
  }
  .hero-showcase .hero-photo,
  .hero-showcase .hero-photo.main,
  .hero-showcase .hero-photo.small-a,
  .hero-showcase .hero-photo.small-b {
    position: absolute;
    inset: auto;
    height: auto;
    margin: 0;
    aspect-ratio: 1;
  }
  .hero-showcase .hero-photo.main {
    top: 7%;
    left: 50%;
    width: 72%;
    transform: translateX(-50%);
  }
  .hero-showcase .hero-photo.small-a {
    left: 5%;
    bottom: 6%;
    width: 43%;
    transform: rotate(-2deg);
  }
  .hero-showcase .hero-photo.small-b {
    right: 5%;
    bottom: 6%;
    width: 43%;
    transform: rotate(2deg);
  }
  .hero-showcase .hero-photo { border-width: 2px; border-radius: 19px; }

  /* Product options: readable controls and one card per row. */
  .detail-layout { padding-top: 18px; }
  .detail-panel {
    width: 100%;
    padding: 24px 14px 28px;
    overflow: visible;
    border-radius: 36px 46px 38px 48px / 40px 34px 46px 37px;
    background: rgba(255,255,255,.86);
  }
  .order-options { padding: 12px 8px 16px; overflow: visible; }
  .visual-color-picker { padding-inline: 8px; }
  .visual-color-picker .color-options { gap: 8px 5px; }
  .visual-color-picker .color-option {
    min-width: 0;
    min-height: 66px;
    padding-inline: 2px;
    grid-template-rows: 32px minmax(27px,auto);
    font-size: 12px;
    line-height: 1.15;
  }
  .visual-color-picker .color-swatch { width: 31px; height: 31px; }
  .frame-color-navigation button { width: 48px; height: 48px; min-width: 48px; }
  .frame-color-navigation button svg { width: 22px; height: 22px; }
  .product-choice-grid { min-width: 0; }
  .product-choice-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-choice-cards label {
    position: relative;
    min-width: 0;
    min-height: 92px;
    padding: 9px 14px 9px 9px;
    display: grid;
    grid-template-columns: 74px minmax(0,1fr);
    align-items: center;
    justify-items: start;
    gap: 14px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    isolation: isolate;
  }
  .product-choice-cards label::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255,255,255,.9);
    -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
  }
  .product-choice-cards label:has(input:checked)::before { background: var(--ink); }
  .product-choice-cards .mounting-photo {
    grid-column: 1;
    width: 74px;
    height: 74px;
    max-height: none;
    object-fit: cover;
    border-radius: 18px;
  }
  .product-choice-cards label > span {
    grid-column: 2;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  /* Full-width search drawer with safe inner bounds on narrow phones. */
  .search-drawer { display: block; width: 100%; overflow: hidden; }
  .search-scrim { position: absolute; inset: 0; width: 100%; }
  .search-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 100dvh;
    padding: 64px 16px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    border-left: 0;
    transform: translateX(105%);
  }
  .search-close { top: 16px; right: 16px; max-width: calc(100% - 32px); }
  .search-panel .eyebrow { padding-right: 76px; font-size: 12px; }
  .search-panel h2 { max-width: 100%; margin-bottom: 20px; font-size: clamp(34px,12vw,48px); }
  .global-search-field { width: 100%; min-width: 0; padding-inline: 14px; }
  .global-search-field svg { width: 21px; height: 21px; }
  .global-search-field input { font-size: 16px; }
  .search-keywords { gap: 7px; }
  .search-keywords button { max-width: 100%; font-size: 12px; overflow-wrap: anywhere; }
  .global-search-result {
    width: 100%;
    min-width: 0;
    grid-template-columns: 70px minmax(0,1fr);
    gap: 11px;
    padding: 9px;
  }
  .search-product-frame { width: 70px; height: 70px; }
  .global-search-result strong { font-size: 14px; }
  .global-search-result small { font-size: 12px; }

  /* FAQ cards regain a visible cloud silhouette on mobile. */
  .faq-list { gap: 18px; }
  .faq-item {
    position: relative;
    isolation: isolate;
    overflow: visible;
    background: rgba(255,255,255,.88);
    border-radius: 34px 44px 36px 48px / 39px 31px 45px 35px;
  }
  .faq-item:not([open]) {
    min-height: 92px;
    display: grid;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .faq-item:not([open])::before {
    content: "";
    position: absolute;
    inset: -5px -7px;
    z-index: -1;
    background: rgba(255,255,255,.91);
    -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    filter: drop-shadow(0 10px 18px rgba(38,50,74,.08));
  }
  .faq-item summary {
    min-width: 0;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: minmax(0,1fr) 24px;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .faq-item summary::after { float: none; justify-self: end; font-size: 25px; }
  .faq-answer { padding: 0 24px 26px; font-size: 15px; }
}

@media (max-width: 370px) {
  .nav-shell { grid-template-columns: minmax(0,1fr) 34px 38px 46px; gap: 4px; }
  .brand-logo-nav { width: 88px; }
  .nav-shell > .menu-toggle { width: 34px; min-width: 34px; }
  .nav-center .search-trigger { width: 38px; height: 38px; min-width: 38px; }
  .nav-shell > .nav-actions,
  .nav-order { width: 46px; min-width: 46px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-showcase { height: 390px; }
  .search-panel { padding-inline: 12px; }
}

/* Phone storefront: content-sized surfaces, viewport sky and a linear purchase flow. */
@media (max-width: 700px) {
  html { background: #acd8f3; scroll-padding-top: 16px; }
  body { isolation: isolate; background: transparent; font-size: 16px; line-height: 1.55; }
  body::before {
    position: fixed; inset: 0; width: 100%; height: 100lvh; z-index: -1;
    background: url('/assets/sky-v15.webp') center top / cover no-repeat #acd8f3;
    opacity: 1; transform: translateZ(0);
  }
  main, .section, .home-popular-section { background: transparent; }
  .page-shell { width: calc(100% - 32px); max-width: 520px; }
  .section, .section.compact { padding-block: 28px; }
  .page-hero { padding: 32px 0 20px; }
  .page-hero p { font-size: 16px; }
  h1,h2,h3,p,li,legend,label,summary { overflow-wrap: anywhere; }
  main :is(button,a.button,select,input,textarea) { max-width: 100%; }
  fieldset, .field, .field-grid > *, .section-heading > * { min-width: 0; }
  legend { max-width: 100%; white-space: normal; }
  .section-heading h2,.page-hero h1 { font-size: clamp(28px,8vw,36px); line-height: 1.2; }
  /* Rounded, full surfaces keep every line of text on its background. */
  .button,.card-select,.price-cloud,.benefit-list li {
    height: auto; min-height: 48px; max-height: none; min-width: 0;
    padding: 14px 20px; border-radius: 22px;
    line-height: 1.4; white-space: normal; overflow-wrap: anywhere;
    font-size: 16px; text-align: center;
  }
  .button,.card-select { background: var(--ink) !important; color: white; }
  .button.secondary { background: white !important; color: var(--ink); }
  .button.product-question-button { background: #f1dec3 !important; color: var(--ink); }
  .button::before,.button::after,.card-select::before,.card-select::after,
  .price-cloud::before,.price-cloud::after,.benefit-list li::before { display: none !important; }
  .cloud-surface,.name-cloud,.content-card,.contact-card,.detail-panel,
  .value-card.cloud-surface,.step-card.cloud-surface,.journey-card,.prep-card,
  .path-card,.individual-contact,.individual-fallback,.home-individual-cloud {
    min-width: 0; width: 100%; height: auto; min-height: 0; max-height: none;
    padding: 24px 20px; border-radius: 28px; background: rgba(255,255,255,.94);
    -webkit-mask: none; mask: none; clip-path: none; overflow: visible;
  }
  .cloud-surface::before,.cloud-surface::after,.name-cloud::before,.name-cloud::after,
  .home-individual-cloud::before,.home-individual-cloud::after { display: none !important; }
  .content-card.product-about-card { width: 100%; margin: 28px 0; padding: 24px 20px; border-radius: 28px; }
  .product-about-card .info-cloud-lobe { display: none; }
  .content-card p,.content-card.product-about-card > p { font-size: 16px; line-height: 1.6; text-align: left; }
  .content-card.product-about-card > h2 { text-align: center; }
  /* First screen: one focal product, followed by a clear catalogue action. */
  .home-hero { display: flex; flex-direction: column; gap: 20px; padding: 24px 0; }
  .hero-intro { display: contents; }
  .hero-logo-heading { order: 0; width: min(84%,320px); margin: 0 auto; }
  .hero-copy { order: 1; margin: 0; font-size: 16px; line-height: 1.5; text-align: center; }
  .hero-showcase { order: 2; display: block; width: 100%; max-width: 400px; height: auto; aspect-ratio: 1; margin: 0; }
  .hero-showcase::before { display: none; }
  .hero-showcase .hero-photo.main { inset: 0; width: 100%; height: 100%; transform: none; border-radius: 28px; }
  .hero-showcase .hero-photo.small-a,.hero-showcase .hero-photo.small-b { display: none; }
  .hero-actions { order: 3; display: grid; grid-template-columns: minmax(0,1fr); width: 100%; gap: 12px; margin: 0; }
  .hero-actions .button { width: 100%; min-height: 52px; padding: 16px 20px; font-size: 16px; }
  .benefit-list { order: 4; width: 100%; margin: 0; gap: 8px; }
  .benefit-list li,.benefit-list li:last-child { width: auto; flex: 1 1 130px; min-height: 0; padding: 9px 12px; font-size: 13px; background: rgba(255,255,255,.86) !important; }
  .daisy-hero-inset { display: none; }
  /* One complete product per row: image, name, price and action together. */
  .product-grid { grid-template-columns: minmax(0,1fr); gap: 20px; }
  .product-card { padding: 10px; border-radius: 28px; background: rgba(255,255,255,.96); }
  .product-card-body { margin: 0; padding: 16px 8px 8px; }
  .name-cloud { padding: 0; min-height: 0; background: transparent; }
  .name-cloud h3,.product-card h3 { width: 100%; max-width: none; margin: 0; font-size: 20px; line-height: 1.35; text-align: left; }
  .card-bottom { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: 12px; padding-top: 14px; }
  .price-cloud { padding: 8px 0; background: transparent; font-size: 20px; text-align: left; }
  .card-select { width: 100%; padding: 12px 10px; font-size: 15px; }
  .product-media,.card-photo { border-radius: 22px; }
  .thumbs { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding: 4px 0 10px; scroll-snap-type: x proximity; }
  .thumb { flex: 0 0 64px; width: 64px; height: 64px; scroll-snap-align: start; }
  .detail-panel { position: static; top: auto; }
  .detail-panel h1 { font-size: 28px; line-height: 1.25; }
  .order-options { padding: 0; border: 0; background: transparent; }
  .order-options .field { font-size: 16px; }
  .order-options select,.order-options input:not([type=radio]) { min-height: 48px; font-size: 16px; padding: 12px; }
  .visual-color-picker::before,.visual-color-picker legend::after { display: none; }
  .visual-color-picker { background: #eef6fd; border-radius: 20px; padding: 16px 10px; }
  .visual-color-picker .color-option { font-size: 14px; min-height: 76px; grid-template-rows: 30px auto; }
  .visual-color-picker .color-option > span:last-child { line-height: 1.25; }
  .visual-color-picker .color-swatch { width: 30px; height: 30px; }
  .product-choice-cards label { border: 1px solid #d4dfef; border-radius: 20px; background: #f0f6fc; padding: 12px; }
  .product-choice-cards label::before { display: none; }
  .product-choice-cards label:has(input:checked) { background: var(--ink); }
  .detail-actions { display: grid; grid-template-columns: minmax(0,1fr); gap: 12px; }
  .detail-actions .button { width: 100%; }
  .plate-size-cards,.field-grid { grid-template-columns: minmax(0,1fr); }
  .plate-size-card { padding: 16px 12px; }
  .switch-key-options { gap: 6px; }
  .switch-key-options span { min-height: 86px; }
  .switch-key-options img { width: 44px; height: 44px; }
  .switch-key-options small { font-size: 14px; }
  /* Search, FAQ and dialogs use their actual content height. */
  .search-panel { padding: 64px 16px 24px; background: #eff7ff url('/assets/sky-v15.webp') center / cover; }
  .search-panel h2 { font-size: 36px; }
  .search-keywords button { font-size: 14px; min-height: 44px; }
  .faq-item,.faq-item:not([open]) { display: block; min-height: 0; border: 0; border-radius: 24px; background: rgba(255,255,255,.95); }
  .faq-item:not([open])::before { display: none; }
  .faq-item summary { padding: 20px; font-size: 17px; }
  .faq-answer { padding: 0 20px 22px; font-size: 16px; }
  .custom-order-dialog-wrap { width: calc(100% - 24px); height: auto; max-height: calc(100dvh - 24px); min-height: 0; }
  .custom-order-dialog-v2 { height: auto; max-height: calc(100dvh - 24px); overflow-y: auto; background: #f3f9ff; border-radius: 28px; }
  .custom-order-dialog-v2::before { display: none; }
  .custom-order-story-content,.delivery-dialog-content.custom-order-story-content { display: flex; flex-direction: column; height: auto; min-height: 0; padding: 60px 18px 24px; overflow: visible; gap: 20px; }
  .custom-order-story-header { display: block; }
  .custom-order-story-header h2 { font-size: 28px; line-height: 1.25; }
  .custom-order-story-header p:last-child,.custom-order-story-copy p { display: block; font-size: 16px; line-height: 1.5; }
  .custom-order-story-daisy { display: none; }
  .custom-order-story-steps,.delivery-options.custom-order-story-steps { display: grid; grid-template-columns: minmax(0,1fr); grid-template-rows: none; gap: 16px; }
  .custom-order-story-steps > li,.delivery-options.custom-order-story-steps > li { display: grid; grid-template-columns: 80px minmax(0,1fr); height: auto; gap: 12px; padding: 12px; }
  .custom-order-story-visual { width: 80px; height: 100px; }
  .custom-order-story-copy h3 { font-size: 18px; line-height: 1.3; }
  .custom-order-story-tags { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
  .custom-order-story-tags li { font-size: 13px; padding: 8px; }
  .custom-order-story-contact,.delivery-payment-note.custom-order-story-contact { width: 100%; display: flex; flex-direction: column; padding: 16px 12px; gap: 12px; overflow: visible; }
  .custom-order-story-contact p span,.custom-order-story-contact p strong { font-size: 16px; }
  .custom-order-story-contact .custom-order-messenger { min-height: 48px; font-size: 14px; }
  .home-individual-actions { display: grid; grid-template-columns: minmax(0,1fr); gap: 14px; }
  .category-heading p { font-size: 14px; }
  .category-tabs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .category-tab,.category-tab:last-child { min-height: 64px; padding: 12px; border-radius: 18px; }
  .category-tab-copy strong { font-size: 14px; white-space: normal; }
  .category-stage { margin-top: 12px; border-radius: 24px; overflow: hidden; }
  .footer-panel { width: 100%; padding: 24px 16px; background: rgba(255,255,255,.94); border-radius: 28px; }
  .footer-panel::before { display: none; }
}
@media (max-width: 700px) {
  .delivery-dialog-wrap.custom-order-dialog-wrap { width: calc(100% - 24px); height: auto; min-height: 0; max-height: calc(100dvh - 24px); }
  .custom-order-dialog-v2.cloud-surface,.delivery-dialog.custom-order-dialog-v2 { padding: 0; height: auto; min-height: 0; max-height: calc(100dvh - 24px); overflow-y: auto; }
  .custom-order-dialog-wrap > .custom-order-close { top: 10px; right: 10px; width: 40px; height: 40px; }
}

/* Phone entry: explain the workshop before offering a product. */
.mobile-workshop-label,.mobile-hero-title,.mobile-discovery { display:none; }
@media (max-width:700px) {
  .site-header .nav-shell { grid-template-columns:minmax(100px,1fr) 44px 44px 52px; column-gap:8px; padding:6px; min-height:64px; background:rgba(255,255,255,.76); }
  .site-header .nav-shell > .brand { display:grid; place-items:center; width:116px; max-width:100%; height:50px; padding:8px 10px; justify-self:start; }
  .site-header .nav-shell > .brand::before { inset:0; filter:none; background:#fff; }
  .site-header .brand-logo-nav { width:100%; height:auto; max-height:32px; object-fit:contain; margin:0; transform:none; }
  .site-header .nav-shell > .menu-toggle { position:relative; display:block; width:44px; min-width:44px; height:44px; padding:0; border:0; background:transparent; border-radius:50%; }
  .site-header .menu-toggle span,.site-header .menu-toggle::before,.site-header .menu-toggle::after { position:absolute; left:12px; width:20px; height:2px; margin:0; transform:none; border-radius:2px; }
  .site-header .menu-toggle::before { top:15px; }
  .site-header .menu-toggle span { top:21px; }
  .site-header .menu-toggle::after { top:27px; }
  .site-header .nav-center .search-trigger { display:grid; place-items:center; width:44px; min-width:44px; height:44px; padding:0; margin:0; border:1.5px solid #26324a; border-radius:50%; translate:none!important; transform:none!important; background:rgba(255,255,255,.9)!important; box-sizing:border-box; }
  .site-header .search-trigger::before,.site-header .search-trigger::after { display:none!important; }
  .site-header .nav-center .search-trigger svg { display:block; width:20px; height:20px; margin:0; padding:0; transform:none; }
  .site-header .nav-shell > .nav-actions { width:52px; margin:0; padding:0; }
  .site-header .nav-actions .nav-order { position:relative; display:grid; place-items:center; width:52px; min-width:52px; height:46px; padding:0; margin:0; transform:none; }
  .site-header .nav-order::before { inset:0!important; filter:none; }
  .site-header .nav-order .cart-icon { display:block; width:20px; height:20px; margin:0; }
  .site-header .cart-count { position:absolute; top:0; right:0; min-width:16px; height:16px; padding:0 3px; font-size:10px; line-height:16px; }
  .home-hero { gap:16px; padding-top:22px; padding-bottom:8px; }
  .mobile-workshop-label { display:block; order:0; margin:0; color:#495876; font:12px/1.5 Arial,sans-serif; letter-spacing:.035em; text-align:center; }
  .home-hero .hero-logo-heading { order:1; width:100%; margin:0; padding:0; }
  .hero-logo-heading .hero-logo { display:none; }
  .mobile-hero-title { display:block; color:#5167c7; font-family:"Yeseva One",serif; font-size:clamp(27px,7.3vw,36px); font-weight:400; line-height:1.22; text-align:center; }
  .home-hero .hero-copy { order:2; margin:0; padding:0 6px; font:16px/1.6 Arial,sans-serif; text-align:center; color:#36435b; }
  .home-hero .hero-actions { order:3; width:100%; margin:0; gap:10px; }
  .home-hero .hero-actions .button { min-height:48px; font-size:16px; }
  .home-hero .hero-showcase,.home-hero .benefit-list { display:none; }
  .mobile-discovery { display:grid; order:4; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:8px; width:100%; }
  .mobile-discovery a { display:flex; flex-direction:column; min-width:0; overflow:hidden; border:1px solid rgba(255,255,255,.9); border-radius:22px; background:rgba(255,255,255,.92); color:#26324a; text-decoration:none; }
  .mobile-discovery img { display:block; width:100%; aspect-ratio:1; object-fit:cover; }
  .mobile-discovery a > span { padding:12px 10px; font:16px/1.35 "Yeseva One",serif; overflow-wrap:anywhere; }
  .mobile-discovery small { display:block; margin-top:6px; font:12px/1.5 Arial,sans-serif; color:#465674; }
  .home-category-section .category-heading p { display:none; }
}

/* A single mobile shop introduction, from navigation to the order actions. */
.mobile-workshop-photo { display:none; }
@media (max-width:700px) {
  .page-home .site-header { padding:12px 12px 0; }
  .page-home .site-header .nav-shell { width:100%; max-width:520px; margin:0 auto; padding:10px 10px 8px; border:0; border-radius:28px 28px 0 0; background:#fff; box-shadow:none; }
  .page-home main > .page-shell:first-child { width:calc(100% - 24px); max-width:520px; margin:0 auto; padding:0; background:#fff; border-radius:0 0 28px 28px; box-shadow:0 16px 36px rgba(47,76,113,.10); }
  .page-home .home-hero { margin:0; padding:12px 18px 20px; gap:12px; }
  .page-home .mobile-workshop-label { display:none; }
  .page-home .home-hero .hero-logo-heading { order:0; text-align:left; }
  .page-home .mobile-hero-title { font-size:clamp(25px,6.5vw,32px); line-height:1.2; text-align:left; color:#354975; }
  .page-home .home-hero .hero-copy { order:1; padding:0; font:16px/1.5 Arial,sans-serif; text-align:left; color:#526079; }
  .page-home .mobile-workshop-photo { display:block; order:2; position:relative; width:100%; margin:2px 0 0; overflow:hidden; border-radius:20px; }
  .mobile-workshop-photo img { display:block; width:100%; height:auto; aspect-ratio:1; object-fit:contain; object-position:center; }
  .mobile-workshop-photo figcaption { position:absolute; bottom:10px; left:10px; right:10px; width:fit-content; max-width:calc(100% - 20px); padding:7px 10px; border-radius:10px; background:rgba(255,255,255,.94); color:#354975; font:12px/1.4 Arial,sans-serif; }
  .page-home .home-hero .hero-actions { order:3; display:grid; grid-template-columns:1fr 1.35fr; align-items:stretch; gap:8px; margin:2px 0 0; }
  .page-home .home-hero .hero-actions .button { display:flex; align-items:center; justify-content:center; min-width:0; min-height:52px; height:auto; padding:12px 10px; border-radius:16px; font:14px/1.4 "Yeseva One",serif; letter-spacing:0; }
  .page-home .home-hero .hero-actions .secondary { color:#354975!important; background:#edf2fa!important; border:1px solid #dce4f1; box-shadow:none; }
  .page-home .home-popular-section { padding-top:26px; }
  .page-home .home-popular-heading h2 { font-family:"Yeseva One",serif; font-size:26px; text-align:left; }
  .page-home .home-popular-section .product-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .page-home .home-popular-section .product-card { padding:8px; border-radius:20px; min-width:0; }
  .page-home .home-popular-section .product-title { font-size:16px; line-height:1.4; }
  .page-home .home-popular-section .card-bottom { grid-template-columns:minmax(0,1fr); gap:8px; }
  .page-home .home-popular-section .price-cloud { font-size:16px; padding:8px; }
  .page-home .home-popular-section .card-select { font-size:14px; padding:10px 8px; }
}

/* Shared phone design across the complete storefront. */
@media (max-width:700px) {
  body { font-size:16px; line-height:1.5; }
  .site-header { padding:12px 12px 0; }
  .site-header .nav-shell,.page-home .site-header .nav-shell { width:100%; max-width:520px; margin:auto; padding:8px; column-gap:4px; border:0; background:#fff; box-shadow:none; }
  .site-header .nav-shell { border-radius:24px; }
  .site-header .nav-shell > .brand { width:100%; max-width:180px; height:60px; padding:0; }
  .site-header .brand-logo-nav { width:100%; max-height:54px; filter:none; }
  .site-header .nav-shell > .brand::before { inset:3px 0; }
  .page-shell { width:calc(100% - 24px); max-width:520px; }
  .page-hero { padding:24px 6px 8px; }
  .page-hero h1 { font-family:"Yeseva One",serif; font-size:32px; line-height:1.2; text-align:left; color:#354975; }
  .page-hero > p { margin-top:12px; text-align:left; font:16px/1.5 Arial,sans-serif; color:#526079; }
  .section,.section.compact { padding-block:20px; }
  .section-heading { display:block; margin-bottom:16px; }
  .section-heading h2 { font-family:"Yeseva One",serif; font-size:26px; line-height:1.25; text-align:left; color:#354975; }
  .section-heading p { font:16px/1.5 Arial,sans-serif; }
  .button,.card-select { border-radius:16px; min-height:48px; padding:12px 16px; font-size:16px; }
  .button.secondary { background:#edf2fa!important; color:#354975; }
  .cloud-surface,.content-card,.detail-panel,.checkout-card,.checkout-form,.order-info-card,.contacts-showcase,.filter-shell {
    border:0; border-radius:24px; background:#fff; padding:20px; height:auto; min-height:0; min-width:0; max-width:100%; box-shadow:0 8px 24px rgba(47,76,113,.06);
  }
  .content-card p,.cloud-surface p,.checkout-form p,.checkout-card p { font:16px/1.6 Arial,sans-serif; text-align:left; }
  .product-grid,.page-home .home-popular-section .product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .product-card { display:flex; flex-direction:column; min-width:0; padding:8px; border-radius:20px; background:#fff; }
  .product-card-body { flex:1; display:flex; flex-direction:column; padding:12px 2px 2px; min-width:0; }
  .product-card .name-cloud { background:transparent; padding:0; border:0; box-shadow:none; }
  .product-card h3,.name-cloud h3 { font-size:16px; line-height:1.4; text-align:left; }
  .product-card .card-bottom { margin-top:auto; padding-top:12px; grid-template-columns:minmax(0,1fr); gap:6px; }
  .product-card .price-cloud { font-size:16px; padding:4px 0; min-height:0; }
  .product-card .card-select { font-size:14px; padding:10px 8px; border-radius:14px; }
  .filter-shell { position:static; padding:12px; margin-bottom:16px; }
  .catalog-controls { display:flex; flex-direction:column; gap:12px; }
  .catalog-search { order:-1; width:100%; min-height:48px; border-radius:14px; font-size:16px; }
  .filter-buttons { display:flex; flex-wrap:wrap; gap:6px; }
  .filter-button { flex:1 1 120px; min-width:0; min-height:44px; padding:10px; border-radius:12px; font-size:14px; line-height:1.3; white-space:normal; }
  .detail-layout,.checkout-layout,.about-intro-grid,.about-principles-grid,.about-choice-tiles,.contacts-reference-layout,.contacts-method-grid,.contact-route-grid,.order-info-grid,.steps-grid { display:grid; grid-template-columns:minmax(0,1fr); gap:16px; }
  .detail-gallery { min-width:0; }
  .detail-panel { position:static; padding:20px 16px; }
  .detail-panel h1 { font-size:26px; color:#354975; }
  .detail-price { font-size:24px; }
  .main-image { border-radius:24px; }
  .gallery-arrow { width:44px; height:44px; padding:10px; border-radius:50%; }
  .order-options { gap:16px; }
  .field,.field > span { font-size:16px; line-height:1.5; }
  .field input:not([type=radio]):not([type=checkbox]),.field select,.field textarea { width:100%; box-sizing:border-box; min-width:0; min-height:48px; padding:12px; font:16px/1.4 Arial,sans-serif; border-radius:12px; }
  .field-grid { display:grid; grid-template-columns:minmax(0,1fr); gap:14px; }
  .visual-color-picker { padding:14px 10px; border-radius:16px; background:#f1f5fb; }
  .color-options { grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
  .color-option { min-width:0; }
  .pattern-options,.product-choice-grid { display:grid; grid-template-columns:minmax(0,1fr); gap:8px; }
  .product-choice-cards label { display:grid; grid-template-columns:60px minmax(0,1fr); align-items:center; gap:12px; min-height:80px; padding:10px; }
  .product-choice-cards .mounting-photo { width:60px; height:60px; }
  .frame-color-navigation { gap:16px; justify-content:center; }
  .frame-color-navigation button { min-width:44px; min-height:44px; }
  .product-about-card > h2 { text-align:center!important; font-size:26px; }
  .about-brand-logo { width:min(100%,260px); height:auto; }
  .about-story-facts,.contacts-facts-band,.order-guide-tags { display:grid; grid-template-columns:minmax(0,1fr); gap:12px; }
  .about-story-facts li,.contacts-facts-band article { padding:12px; border-radius:14px; background:#f1f5fb; }
  .about-choice-tile { width:100%; padding:20px; border-radius:20px; height:auto; min-height:0; }
  .about-choice-title { font-size:22px; }
  .about-choice-description { font:16px/1.5 Arial,sans-serif; }
  .about-collage { min-width:0; width:100%; gap:10px; border-radius:24px; }
  .about-principle { padding:20px; }
  .about-principle h3,.contact-route-card h3 { font-size:22px; line-height:1.3; }
  .contacts-showcase { display:grid; grid-template-columns:minmax(0,1fr); gap:18px; }
  .contacts-showcase-visual { width:100%; margin:0; min-height:0; aspect-ratio:4/3; border-radius:18px; overflow:hidden; }
  .contacts-showcase-copy { padding:0; min-width:0; }
  .contacts-showcase-copy h2 { font-size:26px; line-height:1.3; }
  .contacts-method-card { display:grid; grid-template-columns:44px minmax(0,1fr) 16px; gap:12px; padding:12px; min-height:72px; border-radius:16px; }
  .contacts-method-icon { width:44px; height:44px; display:grid; place-items:center; padding:0; }
  .contacts-method-icon svg { width:24px; height:24px; margin:0; }
  .contacts-method-card small { font-size:14px; }
  .contact-route-card { text-align:left; }
  .order-guide-cloud { padding:20px 16px; }
  .order-page-steps { display:grid; grid-template-columns:minmax(0,1fr); gap:16px; }
  .order-page-steps > li { display:flex; flex-direction:column; min-height:0; padding:12px; border-radius:18px; background:#f1f5fb; }
  .order-page-step-visual { width:100%; height:auto; min-height:0; }
  .order-page-step-visual img { width:100%; height:auto; object-fit:contain; }
  .order-page-step-copy { padding:12px 0 0; }
  .order-page-step-copy p { font:16px/1.5 Arial,sans-serif; }
  .order-guide-actions { display:grid; grid-template-columns:minmax(0,1fr); gap:12px; }
  .faq-list { gap:12px; }
  .faq-item summary { display:block; position:relative; padding:18px 52px 18px 18px; font-size:17px; line-height:1.4; }
  .faq-item summary::after { position:absolute; right:18px; top:50%; transform:translateY(-50%); margin:0; }
  .faq-answer { font:16px/1.6 Arial,sans-serif; padding:0 18px 20px; }
  .checkout-heading { display:flex; flex-wrap:wrap; gap:12px; }
  .checkout-heading h2,.checkout-form h2 { font-size:24px; line-height:1.3; }
  .checkout-total { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
  .cart-item { display:grid; grid-template-columns:64px minmax(0,1fr); gap:12px; padding:16px 0; }
  .cart-item > img { width:64px; height:64px; border-radius:12px; }
  .cart-item-content { min-width:0; overflow-wrap:anywhere; }
  .cart-item-content h3 { font-size:17px; }
  .cart-item-controls { grid-column:2; display:flex; flex-wrap:wrap; gap:8px; }
  .cart-item-controls button { min-width:44px; min-height:44px; }
  .checkout-submit { width:100%; }
  .search-panel { width:100%; max-width:100%; padding:64px 16px 24px; border-radius:0; }
  .search-panel h2 { font:28px/1.25 "Yeseva One",serif; }
  .global-search-result { border-radius:16px; padding:12px; }
  .global-search-result strong { font-size:16px; }
  .global-search-result small { font-size:14px; }
  .product-question-content { width:100%; min-width:0; padding:56px 18px 24px; border-radius:24px; }
  .product-question-networks { display:grid; grid-template-columns:minmax(0,1fr); gap:12px; }
  .product-question-network { min-height:56px; font-size:16px; }
  .footer-panel { border-radius:24px; padding:24px 18px; }
  .footer-panel p,.footer-panel a { font-size:16px; line-height:1.5; }
  [hidden] { display:none!important; }
}

@media (max-width:700px) {
  .catalog-controls { align-items:stretch; }
  .filter-buttons { width:100%; min-width:0; }
  .filter-buttons .filter-button { box-sizing:border-box; max-width:100%; overflow-wrap:anywhere; word-break:normal; font-weight:400; }
  .filter-buttons .filter-button[data-filter-value="Персонализация"] { flex-basis:100%; }
}

/* 2026-09-10: definitive mobile storefront and dialog repair. */
@media (max-width: 700px) {
  /* The first screen uses a dedicated portrait photograph and one button language. */
  .page-home .mobile-workshop-photo {
    display: block;
    order: 2;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin: 4px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.96);
    border-radius: 22px;
    background: #dcefff;
    box-shadow: 0 12px 28px rgba(38,50,74,.12);
  }
  .page-home .mobile-workshop-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
  }
  .page-home .mobile-workshop-photo figcaption,
  .page-home .hero-showcase { display: none !important; }
  .page-home .home-hero .hero-actions {
    order: 3;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
  }
  .page-home .home-hero .hero-actions .button,
  .page-home .home-hero .hero-actions .button.secondary {
    min-height: 56px;
    padding: 12px 10px;
    border: 0;
    background: var(--ink) !important;
    color: #fff !important;
    box-shadow: 0 9px 20px rgba(38,50,74,.17);
  }

  /* Category buttons reveal a preview first; the preview itself opens the catalogue. */
  .home-category-section .category-heading p { display: block; }
  .category-browser { display: block; filter: none; }
  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
    padding: 0;
  }
  .category-tab,
  .category-tab:last-child {
    min-width: 0;
    min-height: 62px;
    padding: 11px 10px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.96);
    border-radius: 18px;
    text-align: center;
    transform: none !important;
  }
  .category-tab:last-child { grid-column: 1 / -1; }
  .category-tab-copy strong { font-size: 14px; line-height: 1.3; }
  .category-stage {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.96);
    border-radius: 24px;
    background: rgba(225,242,255,.86);
    box-shadow: 0 12px 26px rgba(38,50,74,.11);
  }
  .category-preview-panel > .product-photo { border-radius: 23px; }
  .category-preview-panel.is-active::after {
    content: "Открыть категорию";
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(38,50,74,.94);
    color: #fff;
    font: 14px/1.25 var(--font-body);
    box-shadow: 0 8px 18px rgba(38,50,74,.2);
  }

  /* Text placed directly over the sky uses the same editorial type as the site. */
  .page-hero > .eyebrow,
  .page-hero > p,
  .section-heading .eyebrow,
  .section-heading > p,
  .about-story-lead,
  .notes-heading-plain .eyebrow,
  .category-heading > p,
  .portfolio-heading > p {
    font-family: var(--font-body) !important;
    font-weight: 400;
    letter-spacing: 0;
  }
  .about-page-hero > .eyebrow {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.76);
    color: var(--ink);
    box-shadow: 0 7px 16px rgba(38,50,74,.08);
  }
  .home-individual-copy > .eyebrow {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 14px;
    padding: 9px 14px;
    border: 1px solid rgba(81,103,199,.14);
    border-radius: 999px;
    background: #edf5ff;
    color: var(--ink);
    font: 14px/1.35 var(--font-body);
    text-align: center;
    text-transform: none;
  }
  .home-individual-copy h2 { text-align: center; }
  .home-order-button.button.secondary,
  .note-delivery-button.button.secondary {
    border: 0;
    background: var(--ink) !important;
    color: #fff !important;
    box-shadow: 0 9px 20px rgba(38,50,74,.17);
  }

  /* Search is a compact bottom sheet; only its results list scrolls. */
  .search-drawer {
    position: fixed;
    inset: 0;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .search-scrim { position: absolute; inset: 0; width: 100%; }
  .search-panel {
    position: absolute;
    inset: auto 12px 12px;
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    max-height: calc(100dvh - 24px);
    padding: 58px 16px 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.96);
    border-radius: 28px;
    background:
      linear-gradient(150deg,rgba(245,251,255,.96),rgba(218,239,255,.94)),
      url('/assets/sky-v15.webp') center / cover;
    box-shadow: 0 24px 58px rgba(25,41,69,.28);
    transform: translateY(calc(100% + 24px));
    transition: transform .22s cubic-bezier(.2,.8,.2,1);
  }
  .search-drawer.is-open .search-panel { transform: translateY(0); }
  .search-close { top: 14px; right: 16px; }
  .search-panel .eyebrow { margin: 0 0 3px; padding: 0; }
  .search-panel h2 { margin: 0 0 14px; font-size: 30px; }
  .global-search-field { flex: 0 0 auto; min-height: 50px; }
  .search-keywords { flex: 0 0 auto; margin: 12px 0; gap: 6px; }
  .search-keywords button { min-height: 38px; padding: 8px 10px; font-size: 12px; }
  .search-caption { flex: 0 0 auto; margin: 8px 0; }
  .global-search-results {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 2px;
  }
  .global-search-result { grid-template-columns: 58px minmax(0,1fr); padding: 8px; }
  .search-product-frame { width: 58px; height: 58px; }

  /* Both three-step windows stay inside the phone viewport without a bottom gap. */
  .custom-order-modal,
  .delivery-modal {
    padding: 0;
    place-items: stretch;
  }
  .custom-order-dialog-wrap,
  .delivery-dialog-wrap.custom-order-dialog-wrap {
    width: 100%;
    height: 100dvh;
    min-height: 0;
    max-height: none;
  }
  .custom-order-dialog-v2,
  .custom-order-dialog-v2.cloud-surface,
  .delivery-dialog.custom-order-dialog-v2 {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(155deg,rgba(245,251,255,.97),rgba(212,237,255,.94)),
      url('/assets/sky-v15.webp') center / cover;
    box-shadow: none;
  }
  .custom-order-dialog-v2::before,
  .delivery-dialog.custom-order-dialog-v2::before { display: none !important; }
  .custom-order-dialog-wrap > .custom-order-close,
  .delivery-dialog-wrap > .custom-order-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    box-shadow: 0 7px 16px rgba(38,50,74,.12);
  }
  .custom-order-story-content,
  .delivery-dialog-content.custom-order-story-content {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 54px 14px 12px;
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto;
    gap: 10px;
    overflow: hidden;
  }
  .custom-order-story-header,
  .delivery-dialog-header.custom-order-story-header {
    display: block;
    min-width: 0;
    text-align: center;
  }
  .custom-order-story-header > .eyebrow { display: none; }
  .custom-order-story-header h2,
  .delivery-dialog-header.custom-order-story-header h2 {
    margin: 0;
    font-size: clamp(22px,6.3vw,28px);
    line-height: 1.15;
  }
  .custom-order-story-header p:last-child,
  .delivery-dialog-header.custom-order-story-header p:last-child {
    margin: 5px auto 0;
    max-width: 34ch;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.35;
  }
  .custom-order-story-daisy,
  .custom-order-story-tags { display: none; }
  .custom-order-story-steps,
  .delivery-options.custom-order-story-steps {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    grid-template-rows: repeat(3,minmax(0,1fr));
    gap: 8px;
    overflow: hidden;
  }
  .custom-order-story-steps > li,
  .delivery-options.custom-order-story-steps > li {
    min-height: 0;
    height: auto;
    padding: 7px;
    display: grid;
    grid-template-columns: 82px minmax(0,1fr);
    grid-template-rows: minmax(0,1fr);
    align-items: center;
    gap: 10px;
    overflow: hidden;
    border-radius: 19px;
    background: rgba(255,255,255,.88);
  }
  .custom-order-story-steps > li:not(:last-child)::after { display: none; }
  .custom-order-story-visual {
    width: 82px;
    height: 100%;
    min-height: 68px;
    max-height: 112px;
    border-width: 1px;
    border-radius: 15px;
    background: #e8f4ff;
  }
  .custom-order-story-visual > img.custom-order-story-illustration,
  .delivery-options .custom-order-story-visual > img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
  }
  .custom-order-story-number {
    right: 5px;
    bottom: 5px;
    min-width: 34px;
    height: 24px;
    padding: 0 7px;
    font-size: 10px;
  }
  .custom-order-story-copy { padding: 0; text-align: left; }
  .custom-order-story-copy h3 { margin: 0 0 3px; font-size: 16px; line-height: 1.2; }
  .custom-order-story-copy p { margin: 0; font-size: 12px; line-height: 1.3; }
  .custom-order-story-contact,
  .delivery-payment-note.custom-order-story-contact {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 9px 10px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
  }
  .custom-order-story-contact p span,
  .custom-order-story-contact p strong { font-size: 12px; line-height: 1.25; }
  .custom-order-story-contact .custom-order-messengers { gap: 5px; }
  .custom-order-story-contact .custom-order-messenger {
    min-width: 0;
    min-height: 40px;
    padding: 8px 9px;
    font-size: 11px;
  }
  .delivery-payment-note.custom-order-story-contact p > strong { font-size: 11px; }
  .delivery-payment-extra { max-width: 130px; min-height: 38px; padding: 6px 8px; font-size: 9px; }

  /* Product question uses a calm light-blue surface and a clean close control. */
  .button.product-question-button {
    border: 0;
    background: #cfeaff !important;
    color: var(--ink) !important;
    box-shadow: 0 9px 20px rgba(38,50,74,.11);
  }
  .product-question-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 28px;
    background:
      linear-gradient(150deg,rgba(237,248,255,.98),rgba(199,229,251,.96)),
      url('/assets/sky-v15.webp') center / cover;
    overflow: auto;
  }
  .product-question-close {
    border: 0;
    background: rgba(255,255,255,.9);
    color: var(--ink);
    box-shadow: 0 7px 16px rgba(38,50,74,.1);
  }
  .product-question-close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(255,255,255,.95),0 7px 16px rgba(38,50,74,.12);
  }
  .product-question-networks {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: start;
    gap: 14px;
  }
  .product-question-network { min-width: 0; }

  /* The last screen keeps the same floral glass surface as the header. */
  .site-footer { padding: 30px 0 0; background: transparent; }
  .footer-panel {
    width: 100%;
    padding: 34px 20px 22px;
    border-top: 1px solid rgba(255,255,255,.96);
    border-radius: 32px 32px 0 0;
    background:
      linear-gradient(110deg,rgba(244,251,255,.82),rgba(214,239,249,.76)),
      url('/assets/sloenka-dried-flowers-scatter-v15.webp') center / cover no-repeat,
      #dcefff;
    box-shadow: 0 -12px 30px rgba(38,50,74,.1);
  }
  .footer-panel::before { display: none !important; }
}

@media (max-width: 370px) {
  .page-home .home-hero .hero-actions { grid-template-columns: minmax(0,1fr); }
  .custom-order-story-content,
  .delivery-dialog-content.custom-order-story-content { padding-inline: 10px; }
  .custom-order-story-steps > li,
  .delivery-options.custom-order-story-steps > li { grid-template-columns: 70px minmax(0,1fr); gap: 8px; }
  .custom-order-story-visual { width: 70px; }
}

@media (max-width: 700px) and (max-height: 650px) {
  .custom-order-story-header p:last-child,
  .delivery-dialog-header.custom-order-story-header p:last-child { display: none; }
  .custom-order-story-copy p { font-size: 11px; }
  .custom-order-story-content,
  .delivery-dialog-content.custom-order-story-content { padding-top: 50px; gap: 7px; }
}

/* 2026-09-10 v3: hero hierarchy, cloud headings and clearer phone dialogs. */
.hero-gift-main > .product-photo { object-position: 50% 50%; }
.hero-vase-small > .product-photo { object-position: center; }
.category-preview-photo { background: transparent; }
.category-preview-photo > .product-photo { object-fit: contain; }

@media (max-width: 700px) {
  /* Six category controls form two complete rows. */
  .category-tabs { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .category-tab,
  .category-tab:last-child {
    grid-column: auto;
    min-height: 70px;
    padding: 10px 6px;
  }
  .category-tab-copy strong { font-size: clamp(12px,3.35vw,14px); }
  .category-stage { aspect-ratio: 1; }
  .category-preview-photo > .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: none;
  }

  /* Main home-section titles sit on light cloud silhouettes. */
  .home-popular-heading > div,
  .category-heading > div,
  .portfolio-heading > div {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .home-popular-heading h2,
  .category-heading h2,
  .portfolio-heading h2 {
    position: relative;
    isolation: isolate;
    width: fit-content;
    max-width: 100%;
    padding: 17px 30px;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: clamp(25px,7vw,32px);
    line-height: 1.08;
    text-align: center;
  }
  .home-popular-heading h2::before,
  .category-heading h2::before,
  .portfolio-heading h2::before {
    content: "";
    position: absolute;
    inset: -5px -14px;
    z-index: -1;
    background: rgba(255,255,255,.9);
    -webkit-mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    mask: url("/assets/sloenka-cloud-shape-full.svg") center / 100% 100% no-repeat;
    filter: drop-shadow(0 8px 14px rgba(38,50,74,.1));
  }

  /* Supporting text that sits directly on the sky receives one calm cloud surface. */
  .page-hero > p:not(.about-workshop-label),
  .section-heading > p,
  .notes-heading-plain > .eyebrow {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.94);
    border-radius: 24px 30px 25px 32px / 29px 23px 31px 25px;
    background: rgba(255,255,255,.82);
    color: var(--ink);
    font-family: var(--font-body) !important;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 8px 20px rgba(38,50,74,.08);
  }
  .section-heading > p { margin-bottom: 0; }

  /* The workshop location is typographic, not boxed; the city owns line two. */
  .about-page-hero > .about-workshop-label {
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-blue);
    font-family: var(--font-display) !important;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
    box-shadow: none;
  }
  .about-workshop-label > span { display: block; }
  .about-workshop-label > span:last-child { white-space: nowrap; }

  /* The native 16:9 illustrations are larger and no longer sit in blue boxes. */
  .custom-order-story-steps > li,
  .delivery-options.custom-order-story-steps > li {
    grid-template-columns: clamp(124px,39vw,164px) minmax(0,1fr);
    padding: 8px;
    gap: 11px;
  }
  .custom-order-story-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 15px;
    background: transparent;
  }
  .custom-order-story-visual > img.custom-order-story-illustration,
  .delivery-options .custom-order-story-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit;
  }
  .custom-order-story-copy h3 { font-size: 15px; }
  .custom-order-story-copy p { font-size: 12px; line-height: 1.28; }
}

@media (max-width: 360px) {
  .category-tab-copy strong { font-size: 12px; }
  .custom-order-story-steps > li,
  .delivery-options.custom-order-story-steps > li {
    grid-template-columns: 112px minmax(0,1fr);
    gap: 8px;
  }
}

/* 2026-09-10 v4: one mobile heading system without decorative title clouds. */
@media (max-width: 700px) {
  .home-popular-heading > div,
  .category-heading > div,
  .portfolio-heading > div,
  .about-principles-heading > div,
  .order-info-heading > div,
  .contact-routes-heading > div {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .home-popular-heading h2,
  .category-heading h2,
  .portfolio-heading h2,
  .catalog-page-hero h1,
  .order-page-hero h1,
  .faq-page-hero h1,
  .contacts-page-hero h1,
  .checkout-page-hero h1,
  .about-principles-heading h2,
  .order-info-heading h2,
  .contact-routes-heading h2 {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: clamp(29px, 8.5vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 2px 0 rgba(255,255,255,.78), 0 8px 20px rgba(61,89,170,.12);
  }

  .home-popular-heading h2::before,
  .category-heading h2::before,
  .portfolio-heading h2::before {
    content: none;
    display: none;
  }

  .home-popular-heading,
  .category-heading,
  .portfolio-heading,
  .about-principles-heading,
  .order-info-heading,
  .contact-routes-heading {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .portfolio-heading h2 {
    order: 1;
    white-space: nowrap;
  }
  .portfolio-heading > div > .eyebrow {
    order: 2;
    width: auto;
    margin: 8px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    box-shadow: none;
  }

  .catalog-page-hero,
  .order-page-hero,
  .faq-page-hero,
  .contacts-page-hero,
  .checkout-page-hero {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  /* Catalog introduction is readable on the sky without a white panel. */
  .catalog-page-hero > p {
    width: min(100%, 540px);
    margin: 14px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body) !important;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    text-shadow: 0 1px 0 #fff, 0 0 10px rgba(255,255,255,.92), 0 0 24px rgba(255,255,255,.78);
    box-shadow: none;
  }

  /* The removed labels remain available on desktop only. */
  .faq-page-hero > .eyebrow,
  .checkout-page-hero > .eyebrow {
    display: none;
  }

  /* About-page location and logo form one centred brand lockup. */
  .about-page-hero {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .about-page-hero > .about-workshop-label {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    display: grid;
    justify-items: center;
    gap: 3px;
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    font-family: var(--font-display) !important;
    font-size: clamp(17px, 5vw, 21px);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 0 rgba(255,255,255,.78), 0 7px 18px rgba(61,89,170,.12);
    box-shadow: none;
  }
  .about-workshop-label > span {
    display: block;
    white-space: nowrap;
  }
  .about-logo-heading {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .about-brand-logo {
    width: min(78vw, 330px);
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .about-story-cloud > .eyebrow {
    width: 100%;
    margin: 0 auto 8px;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: clamp(20px, 6vw, 27px);
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0;
  }

  /* Eyebrows for the requested secondary headings stay light and unboxed. */
  .about-principles-heading .eyebrow,
  .order-info-heading .eyebrow,
  .contact-routes-heading .eyebrow {
    width: auto;
    margin: 0 auto 8px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
  }

  /* “Перед заказом” is text on the background, not a separate white card. */
  .notes-heading-plain > .eyebrow {
    width: auto;
    max-width: 100%;
    margin: 0 auto 9px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body) !important;
    text-align: center;
    box-shadow: none;
  }
}

@media (max-width: 360px) {
  .home-popular-heading h2,
  .category-heading h2,
  .portfolio-heading h2,
  .catalog-page-hero h1,
  .order-page-hero h1,
  .faq-page-hero h1,
  .contacts-page-hero h1,
  .checkout-page-hero h1,
  .about-principles-heading h2,
  .order-info-heading h2,
  .contact-routes-heading h2 {
    font-size: 28px;
  }
}


/* 2026-09-11: public offer, direct social links and individual-order alignment. */
.checkout-legal {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font: 13px/1.5 Arial, sans-serif;
  text-align: center;
}
.checkout-legal a,
.offer-document a {
  color: #354f9b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-individual .individual-contact {
  min-height: 360px;
  padding: 78px clamp(54px, 8vw, 120px) 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.page-individual .individual-contact > div:first-child {
  width: min(100%, 720px);
}
.page-individual .individual-contact h2,
.page-individual .individual-contact p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-individual .individual-contact .messenger-icons {
  margin: 0;
  justify-content: center;
  align-items: center;
}

.offer-page-shell {
  width: min(1080px, calc(100% - 36px));
  padding: clamp(42px, 6vw, 82px) 0;
}
.offer-hero {
  max-width: 860px;
  margin: 0 auto clamp(24px, 4vw, 42px);
  text-align: center;
}
.offer-hero .eyebrow { margin-bottom: 12px; }
.offer-hero h1 {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.05;
}
.offer-hero > p:last-child {
  margin: 14px auto 0;
  color: var(--ink);
  font: 18px/1.5 var(--font-body);
}
.offer-document {
  padding: clamp(30px, 5.5vw, 72px);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 34px 46px 38px 52px / 40px 34px 48px 38px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 55px rgba(38,50,74,.13);
}
.offer-meta {
  margin-bottom: 26px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(38,50,74,.12);
  color: var(--ink-soft);
  font: 14px/1.5 Arial, sans-serif;
}
.offer-intro {
  margin: 0 0 34px;
  color: var(--ink);
  font: 17px/1.7 Arial, sans-serif;
}
.offer-section + .offer-section { margin-top: 34px; }
.offer-section h2 {
  margin: 0 0 16px;
  color: #354f9b;
  font-family: var(--font-body);
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.25;
}
.offer-section p {
  margin: 0 0 12px;
  color: #303b50;
  font: 16px/1.72 Arial, sans-serif;
}
.offer-table-wrap { margin-top: 20px; overflow-x: auto; }
.offer-seller-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(38,50,74,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  font: 15px/1.5 Arial, sans-serif;
}
.offer-seller-table th,
.offer-seller-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(38,50,74,.1);
  vertical-align: top;
  text-align: left;
}
.offer-seller-table tr:last-child > * { border-bottom: 0; }
.offer-seller-table th { width: 34%; color: var(--ink); background: rgba(220,239,255,.72); }

@media (max-width: 700px) {
  /* “Популярное” now has exactly the same bubble-letter heading as “Поиск по категориям”. */
  .page-home .home-popular-heading h2 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: clamp(29px, 8.5vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
    text-shadow: 0 2px 0 rgba(255,255,255,.78), 0 8px 20px rgba(61,89,170,.12);
  }

  .page-individual .individual-hero {
    width: 100%;
    max-width: 100%;
    padding: 30px 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }
  .page-individual .individual-hero h1,
  .page-individual .individual-steps + .section-heading h2,
  .page-individual main .section-heading h2 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: clamp(29px, 8.5vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
    text-shadow: 0 2px 0 rgba(255,255,255,.8), 0 8px 20px rgba(61,89,170,.12);
  }
  .page-individual .individual-hero > p:not(.eyebrow) {
    width: min(100%, 500px);
    margin: 14px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font: 15px/1.55 var(--font-body) !important;
    text-align: center;
    text-shadow: 0 1px 0 #fff, 0 0 12px rgba(255,255,255,.96), 0 0 28px rgba(255,255,255,.82);
    box-shadow: none;
  }
  .page-individual main .section-heading,
  .page-individual main .section-heading > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-individual main .section-heading .eyebrow {
    margin: 0 auto 8px;
    text-align: center;
  }
  .page-individual .individual-contact {
    min-height: 0;
    padding: 30px 20px 26px;
    gap: 14px;
    border-radius: 30px;
    background: rgba(255,255,255,.94);
    text-align: center;
  }
  .page-individual .individual-contact h2 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.08;
    text-align: center;
  }
  .page-individual .individual-contact p {
    margin-top: 0;
    font: 15px/1.55 var(--font-body);
    text-align: center;
  }
  .page-individual .individual-contact .messenger-icons {
    margin-top: 0;
    justify-content: center;
  }
  .page-individual .individual-fallback > .eyebrow {
    text-align: center;
  }

  .offer-page-shell { width: calc(100% - 24px); padding: 30px 0 46px; }
  .offer-hero { margin-bottom: 22px; }
  .offer-hero .eyebrow {
    display: block;
    width: auto;
    margin: 0 auto 10px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }
  .offer-hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .offer-hero > p:last-child { font-size: 16px; }
  .offer-document { padding: 26px 18px; border-radius: 28px; }
  .offer-meta { flex-direction: column; gap: 4px; }
  .offer-intro { font-size: 16px; line-height: 1.65; }
  .offer-section + .offer-section { margin-top: 30px; }
  .offer-section h2 { font-size: 23px; overflow-wrap: normal; word-break: normal; }
  .offer-section p { font-size: 16px; line-height: 1.65; overflow-wrap: normal; word-break: normal; }
  .offer-seller-table th,
  .offer-seller-table td { padding: 12px 10px; font-size: 14px; overflow-wrap: anywhere; }
  .offer-seller-table th { width: 38%; }
  .checkout-legal { font-size: 13px !important; line-height: 1.45 !important; text-align: center !important; }
}


/* 2026-09-11: emblem, direct contacts, PDF offer and final layout fixes. */
.brand-logo-picture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-email {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--ink);
  font: 700 14px/1.4 var(--font-body);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-email:hover,
.footer-email:focus-visible { color: var(--brand-blue); text-decoration: underline; }
.footer-instagram-plaque { text-decoration: none; }
.contacts-method-card > span:not(.contacts-method-icon) { min-width: 0; }
.contacts-method-card small { overflow-wrap: anywhere; }

@media (min-width: 701px) {
  .page-individual .individual-fallback {
    box-sizing: border-box;
    min-height: 390px;
    padding: 82px clamp(96px, 11vw, 142px) 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .page-individual .individual-fallback > .eyebrow {
    width: min(100%, 34rem);
    max-width: 100%;
    margin: 0 auto 12px;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: normal;
    text-align: center;
  }
  .page-individual .individual-fallback > h3,
  .page-individual .individual-fallback > p {
    width: min(100%, 32rem);
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .site-header .nav-shell > .brand,
  .page-home .site-header .nav-shell > .brand {
    width: 64px;
    max-width: 64px;
    height: 58px;
    padding: 0;
    justify-self: start;
  }
  .site-header .brand-logo-picture {
    width: 58px;
    height: 58px;
  }
  .site-header .brand-logo-nav {
    width: 58px;
    height: 58px;
    max-height: 58px;
    object-fit: contain;
  }

  .page-home .mobile-workshop-photo.product-framed {
    position: relative;
    isolation: isolate;
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: 4.2%;
    background: transparent;
    overflow: hidden;
  }
  .page-home .mobile-workshop-photo.product-framed > .product-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
  }
  .page-home .mobile-workshop-photo.product-framed > .floral-frame {
    display: block !important;
    position: absolute;
    inset: -0.7%;
    z-index: 2;
    width: 101.4%;
    height: 101.4%;
    aspect-ratio: auto;
    object-fit: fill;
    object-position: center;
    pointer-events: none;
  }
  .footer-email { margin-inline: auto; }
}

/* 2026-09-11 v2: final logo alignment and cloud content safe area. */
@media (min-width: 701px) {
  .page-individual .individual-fallback {
    min-height: 430px;
    padding-top: 120px;
    padding-bottom: 64px;
  }
}

@media (max-width: 700px) {
  .site-header .nav-shell,
  .page-home .site-header .nav-shell {
    min-height: 72px;
  }
  .site-header .nav-shell > .brand,
  .page-home .site-header .nav-shell > .brand {
    width: 76px;
    max-width: 76px;
    height: 66px;
    margin-left: 8px;
  }
  .site-header .brand-logo-picture,
  .site-header .brand-logo-nav {
    width: 66px;
    height: 66px;
    max-height: 66px;
  }
}

/* 2026-09-11 v3: persistent mobile header and merchant details. */
.footer-bottom {
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom .footer-legal {
  font-weight: 700;
  text-align: center;
}
.footer-bottom .footer-legal a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.footer-bottom .footer-legal a:hover,
.footer-bottom .footer-legal a:focus-visible {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .site-header,
  .page-home .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}

/* 2026-09-12 v4: complete sticky header silhouette and phone below email. */
.footer-phone {
  display: block;
  width: fit-content;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.footer-phone:hover,
.footer-phone:focus-visible {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .site-header,
  .page-home .site-header {
    padding: max(8px, env(safe-area-inset-top)) 12px 10px;
    overflow: visible;
  }
  .site-header .nav-shell,
  .page-home .site-header .nav-shell {
    overflow: visible;
    border-radius: 24px 30px 26px 32px / 23px 27px 28px 30px;
    box-shadow: 0 8px 20px rgba(38,50,74,.13);
  }
  .footer-phone {
    margin-inline: auto;
  }
}

/* 2026-09-12 v5: product photo viewer, exact footer alignment and final mobile header shape. */
.page-contacts #instagram small {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.footer-phone {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}
.footer-bottom .footer-legal {
  justify-self: start;
  text-align: left;
}
.footer-bottom .footer-copyright {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}
.footer-bottom .footer-craft {
  justify-self: end;
  text-align: right;
}

[data-detail-gallery] {
  cursor: zoom-in;
}
[data-detail-gallery] .gallery-arrow {
  cursor: pointer;
}

.product-image-lightbox[hidden] {
  display: none !important;
}
.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: clamp(14px, 3vw, 34px);
  display: grid;
  place-items: center;
}
.product-image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(22, 32, 54, .84);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.product-image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(88vh, 900px);
  min-height: 280px;
  padding: clamp(12px, 2vw, 20px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 30px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 80px rgba(9,18,39,.42);
  overflow: hidden;
}
.product-image-lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}
.product-image-lightbox-close,
.product-image-lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(38,50,74,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(38,50,74,.16);
  cursor: pointer;
}
.product-image-lightbox-close {
  top: 16px;
  right: 16px;
  font: 400 34px/1 Arial, sans-serif;
}
.product-image-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.product-image-lightbox-prev { left: 16px; }
.product-image-lightbox-next { right: 16px; }
.product-image-lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-image-lightbox-close:hover,
.product-image-lightbox-close:focus-visible,
.product-image-lightbox-nav:hover,
.product-image-lightbox-nav:focus-visible {
  color: var(--brand-blue);
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.product-image-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(38,50,74,.82);
  color: #fff;
  font: 700 12px/1 var(--font-body);
  transform: translateX(-50%);
}
body.product-lightbox-is-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .site-header .nav-shell,
  .page-home .site-header .nav-shell {
    overflow: hidden;
    border-radius: 26px 30px 28px 32px / 25px 28px 30px 31px;
  }
  .site-header .nav-shell::after,
  .page-home .site-header .nav-shell::after {
    border-radius: inherit;
  }
  .page-home main > .page-shell:first-child {
    border-radius: 28px;
    overflow: hidden;
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    text-align: center;
  }
  .footer-bottom .footer-copyright {
    order: 1;
    justify-self: center;
  }
  .footer-bottom .footer-legal {
    order: 2;
    justify-self: center;
    color: rgba(38,50,74,.44);
    font-weight: 600;
    text-align: center;
  }
  .footer-bottom .footer-craft {
    order: 3;
    justify-self: center;
    text-align: center;
  }

  .product-image-lightbox {
    padding: 10px;
  }
  .product-image-lightbox-dialog {
    width: 100%;
    height: min(84svh, 760px);
    padding: 8px;
    border-radius: 24px;
  }
  .product-image-lightbox-image {
    border-radius: 17px;
  }
  .product-image-lightbox-close,
  .product-image-lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .product-image-lightbox-close { top: 12px; right: 12px; }
  .product-image-lightbox-prev { left: 12px; }
  .product-image-lightbox-next { right: 12px; }
  .product-image-lightbox-counter { bottom: 12px; }
}

/* 2026-09-12 v6: keep the complete image inside the desktop viewer. */
.product-image-lightbox-dialog {
  box-sizing: border-box;
  display: block;
}
.product-image-lightbox-image {
  position: absolute;
  inset: clamp(12px, 2vw, 20px);
  width: calc(100% - clamp(24px, 4vw, 40px));
  height: calc(100% - clamp(24px, 4vw, 40px));
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 700px) {
  .footer-bottom .footer-legal {
    color: rgba(38,50,74,.64);
  }
  .product-image-lightbox-image {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
}

/* 2026-09-12 v7: clearer mobile header/footer and copyable email contact. */
.contacts-email-card {
  grid-template-columns: 52px minmax(0, 1fr);
  cursor: default;
}
.contacts-email-address {
  color: var(--ink) !important;
  overflow-wrap: anywhere;
  user-select: all;
}
.contacts-email-copy {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(81,103,199,.22);
  border-radius: 14px;
  background: rgba(222,239,255,.88);
  color: var(--brand-blue);
  font: 700 13px/1.2 var(--font-body);
  cursor: pointer;
}
.contacts-email-copy:hover,
.contacts-email-copy:focus-visible {
  border-color: var(--brand-blue);
  background: #fff;
  outline: 2px solid rgba(81,103,199,.2);
  outline-offset: 2px;
}
.contacts-email-copy.is-copied {
  background: var(--brand-blue);
  color: #fff;
}

@media (max-width: 700px) {
  .footer-bottom .footer-legal,
  .footer-bottom .footer-copyright,
  .footer-bottom .footer-craft {
    color: rgba(38,50,74,.64) !important;
    opacity: 1 !important;
  }

  .site-footer {
    padding-top: 8px !important;
  }
  .site-footer .footer-panel {
    padding-top: 12px !important;
  }
  .site-footer .footer-main {
    margin-top: 0;
  }
  .site-footer .footer-brand-column {
    padding-top: 0;
  }

  .site-header .nav-shell > .brand::before,
  .page-home .site-header .nav-shell > .brand::before {
    content: none !important;
    display: none !important;
    background: none !important;
    -webkit-mask: none !important;
    mask: none !important;
  }
  .site-header .brand-logo-picture,
  .page-home .site-header .brand-logo-picture {
    background: transparent !important;
  }
  .site-header .brand-logo-nav,
  .page-home .site-header .brand-logo-nav {
    filter:
      brightness(1.12)
      saturate(1.18)
      contrast(1.08)
      drop-shadow(0 0 3px rgba(255,255,255,.98))
      drop-shadow(0 5px 9px rgba(38,50,74,.26)) !important;
  }

  .contacts-email-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .contacts-email-copy {
    min-height: 44px;
    font-size: 14px;
  }
}

/* 2026-09-12 v8: compact copy control stays inside the original card height. */
.contacts-email-card {
  grid-template-columns: 52px minmax(0, 1fr) 38px;
}
.contacts-email-copy {
  grid-column: auto;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 8px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 50%;
}
.contacts-email-copy svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contacts-email-copy.is-copied svg {
  display: none;
}
.contacts-email-copy.is-copied::before {
  content: "✓";
  font: 800 20px/1 Arial, sans-serif;
}

@media (max-width: 700px) {
  .contacts-email-card {
    grid-template-columns: 44px minmax(0, 1fr) 36px;
    gap: 10px;
    min-height: 72px;
  }
  .contacts-email-address {
    font-size: clamp(10px, 3.25vw, 13px) !important;
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .contacts-email-copy {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 7px;
  }
}

/* 2026-09-12 v9: distinctly muted mobile INN and sharp high-resolution emblem. */
@media (max-width: 700px) {
  .footer-bottom .footer-legal {
    color: #9a9da3 !important;
    -webkit-text-fill-color: #9a9da3 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    filter: none !important;
  }

  .site-header .brand-logo-picture,
  .page-home .site-header .brand-logo-picture {
    position: relative;
    isolation: isolate;
  }
  .site-header .brand-logo-picture::before,
  .page-home .site-header .brand-logo-picture::before {
    content: "";
    position: absolute;
    inset: 7px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255,255,255,.38);
    box-shadow: 0 0 14px rgba(255,255,255,.82);
    pointer-events: none;
  }
  .site-header .brand-logo-nav,
  .page-home .site-header .brand-logo-nav {
    image-rendering: auto;
    filter: brightness(1.06) saturate(1.1) contrast(1.12) !important;
    transform: none !important;
  }
}

/* 2026-09-12 v10: exact footer typography, two-line desktop email and vector emblem. */
@media (min-width: 701px) {
  .contacts-email-card {
    grid-template-columns: 52px minmax(0, 1fr) 34px;
    gap: 11px;
  }
  .contacts-email-address {
    font-size: 11px !important;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
  }
  .contacts-email-copy {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 7px;
  }
  .contacts-email-copy svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 700px) {
  .footer-bottom .footer-legal,
  .footer-bottom .footer-copyright,
  .footer-bottom .footer-craft {
    color: rgba(38,50,74,.64) !important;
    -webkit-text-fill-color: rgba(38,50,74,.64) !important;
    opacity: 1 !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1.4 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    filter: none !important;
  }
  .site-header .brand-logo-nav,
  .page-home .site-header .brand-logo-nav {
    filter: none !important;
    image-rendering: auto;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
  }
}

/* 2026-09-12 v11: preserve the exact original emblem and remove the footer seam on phones. */
@media (max-width: 700px) {
  .site-header .brand-logo-nav,
  .page-home .site-header .brand-logo-nav {
    filter: none !important;
    image-rendering: auto !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .site-header .brand-logo-picture::before,
  .page-home .site-header .brand-logo-picture::before {
    content: none !important;
    display: none !important;
  }

  .site-footer,
  .site-footer .footer-panel {
    border-top: 0 !important;
    box-shadow: none !important;
  }
}


/* 2026-09-12 v15: merged legal styles to remove one render-blocking request. */
/* Legal pages, separate consent and cookie controls — 2026-09-12. */
.legal-page-shell{max-width:1120px;margin:0 auto;padding:clamp(34px,6vw,72px) 20px 80px}
.legal-document{background:rgba(255,255,255,.88);border:1px solid rgba(29,56,96,.12);border-radius:30px;box-shadow:0 22px 60px rgba(31,62,103,.1);padding:clamp(24px,5vw,64px);color:#1b3358}
.legal-heading{padding-bottom:28px;margin-bottom:30px;border-bottom:1px solid rgba(29,56,96,.14)}
.legal-heading h1{font-size:clamp(2rem,5vw,4rem);line-height:1.06;margin:.25em 0}
.legal-updated{color:#66758d;margin:0}
.legal-document section+section{margin-top:34px}
.legal-document h2{font-size:clamp(1.25rem,2.5vw,1.75rem);line-height:1.2;margin:0 0 14px}
.legal-document p,.legal-document li{font-size:clamp(1rem,1.6vw,1.08rem);line-height:1.7}
.legal-document ul{padding-left:1.3em}
.legal-document a{color:#1259a7;text-underline-offset:3px}
.legal-note{margin-top:36px;padding:18px 20px;border-radius:18px;background:#e9f7f7;border:1px solid rgba(25,137,135,.2)}
.privacy-consent{display:grid;grid-template-columns:24px 1fr;align-items:start;gap:10px;margin:4px 0 16px;color:#283d5f;font-size:.96rem;line-height:1.45}
.privacy-consent input{width:20px;height:20px;margin:2px 0 0;accent-color:#178d8a}
.privacy-consent a{color:#1259a7;text-underline-offset:2px}
.checkout-legal{margin-top:2px}
.cookie-consent{position:fixed;z-index:10000;left:50%;bottom:14px;transform:translateX(-50%);width:min(720px,calc(100% - 28px));padding:11px 13px;border:1px solid rgba(80,135,169,.22);border-radius:16px;background:rgba(226,242,250,.9);color:#29445f;box-shadow:0 10px 30px rgba(30,67,96,.16);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);display:grid;grid-template-columns:1fr auto;gap:12px;align-items:center}
.cookie-consent[hidden]{display:none}
.cookie-consent p{margin:0;line-height:1.35;font-size:.8rem}
.cookie-consent a{color:#2b6d94;text-underline-offset:2px}
.cookie-consent-actions{display:flex;gap:7px;flex-wrap:nowrap;justify-content:flex-end}
.cookie-consent button{border:1px solid rgba(66,113,145,.24);border-radius:999px;padding:7px 10px;font:inherit;font-size:.76rem;font-weight:700;white-space:nowrap;cursor:pointer}
.cookie-consent-accept{background:#9fd2e8;color:#183b55;border-color:#8bc5df!important}
.cookie-consent-essential{background:rgba(255,255,255,.56);color:#36566f}
@media(max-width:700px){
  .legal-page-shell{padding:24px 12px 54px}
  .legal-document{border-radius:22px;padding:24px 18px}
  .legal-heading h1{font-size:2rem}
  .cookie-consent{bottom:8px;width:calc(100% - 16px);padding:10px 11px;border-radius:14px;grid-template-columns:1fr;gap:8px}
  .cookie-consent p{font-size:.76rem}
  .cookie-consent-actions{justify-content:stretch}
  .cookie-consent button{flex:1 1 145px;padding:7px 8px;font-size:.73rem}
}



/* OTRADA v36: compact colour-part navigation and category frame cleanup. */
.frame-color-pages {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.frame-color-pages .frame-color-navigation {
  order: -1;
  gap: 10px;
  margin: 0 0 14px;
}

.frame-color-pages.has-multiple-color-pages .frame-color-page > legend {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body .frame-color-pages .frame-color-navigation button {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 4px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #102d78;
}

body .frame-color-pages .frame-color-navigation button:hover,
body .frame-color-pages .frame-color-navigation button:focus-visible {
  border: 0 !important;
  background: transparent !important;
  color: #5167c7;
}

.frame-color-pages .frame-color-counter {
  min-width: 0;
  max-width: min(330px, calc(100% - 92px));
  color: #102d78;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.page-home .category-preview-panel.product-framed {
  overflow: hidden;
}

.page-home .category-preview-panel > .floral-frame,
.page-home .category-preview-photo > .floral-frame {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 4 !important;
  inset: -1.8% !important;
  width: 103.6% !important;
  height: 103.6% !important;
  max-width: none !important;
  object-fit: fill;
  clip-path: inset(.55% round 7%);
}

@media (max-width: 700px) {
  .frame-color-pages .frame-color-counter {
    max-width: calc(100% - 88px);
    font-size: 16px;
  }
}
