:root {
  --cream: #f7f1eb;
  --paper: #fffdf9;
  --ink: #151311;
  --green: #123c2a;
  --green-2: #39774d;
  --pink: #cf1d60;
  --gold: #efa916;
  --line: #d9d0c8;
  --muted: #746a64;
  --radius: 28px;
  --shadow: 0 16px 40px rgb(20 14 10 / 8%);
  --ease-smooth: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: #9b9b9b; background: transparent; text-shadow: none; }
::-moz-selection { color: #9b9b9b; background: transparent; text-shadow: none; }
main > section { scroll-margin-top: 86px; }
.button, .product-card, .budget-card, .flower-mark, .product-image img, .hero-photo, .wedding-photo { backface-visibility: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: white; border-radius: 99px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 86px;
  padding: 16px clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto auto auto auto;
  grid-template-areas: 'logo nav lang shop phone order';
  gap: clamp(10px, 1.5vw, 24px);
  align-items: center;
  background: rgb(247 241 235 / 94%);
  border-bottom: 1px solid rgb(21 19 17 / 8%);
}
.logo { grid-area: logo; font-size: clamp(31px, 3.4vw, 50px); font-weight: 950; letter-spacing: -.07em; line-height: 1; }
.logo span { color: var(--pink); }
.main-nav { grid-area: nav; display: flex; gap: clamp(12px, 2vw, 32px); justify-content: center; }
.main-nav a, .header-phone { position: relative; font-weight: 720; font-size: 14px; transition: color .35s var(--ease-soft), transform .35s var(--ease-smooth); }
.main-nav a:hover, .header-phone:hover { color: var(--pink); }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-smooth); }
.main-nav a:hover { transform: translateY(-2px); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { grid-area: menu; display: none; }
.language-switch { grid-area: lang; padding: 3px; display: flex; gap: 2px; background: rgb(21 19 17 / 7%); border-radius: 999px; }
.language-switch button { min-width: 34px; height: 30px; padding: 0 8px; color: var(--muted); background: transparent; border: 0; border-radius: 999px; font-size: 11px; font-weight: 850; cursor: pointer; transition: color .24s var(--ease-soft), background-color .24s var(--ease-soft), transform .28s var(--ease-smooth); }
.language-switch button:hover { color: var(--ink); transform: translateY(-1px); }
.language-switch button[aria-pressed="true"] { color: white; background: var(--green); }
.header-phone { grid-area: phone; }
.header-order { grid-area: order; }
.header-shop-actions { grid-area: shop; display: flex; align-items: center; gap: 7px; }
.header-chip { min-height: 38px; padding: 8px 12px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 850; cursor: pointer; transition: color .25s var(--ease-soft), border-color .25s var(--ease-soft), transform .3s var(--ease-smooth); }
.header-chip:hover { color: var(--pink); border-color: var(--pink); transform: translateY(-2px); }
.header-cart { display: inline-flex; align-items: center; gap: 7px; }
.header-cart b { min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; color: white; background: var(--pink); border-radius: 99px; font-size: 11px; }

.button {
  min-height: 50px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .32s var(--ease-smooth), background-color .28s var(--ease-soft), color .28s var(--ease-soft), border-color .28s var(--ease-soft);
}
.button:hover { transform: translateY(-2px) scale(1.018); }
.button:active { transform: translateY(-1px) scale(.985); transition-duration: .12s; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--pink); }
.button-pink { color: white; background: var(--pink); }
.button-pink:hover { background: #ad0e4a; }
.button-outline-light { color: white; border-color: rgb(255 255 255 / 70%); }
.button-outline-light:hover { color: var(--green); background: white; border-color: white; }
.button-outline-dark { border-color: var(--ink); }
.button-outline-dark:hover { color: white; background: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero {
  min-height: 660px;
  padding: clamp(64px, 8vw, 118px) clamp(26px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  color: white;
  background: var(--green);
}
.hero-copy { max-width: 780px; min-width: 0; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 22px; color: var(--pink); font-size: 14px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 3px; margin-right: 12px; vertical-align: middle; background: currentColor; }
.eyebrow-gold { color: var(--gold); }
.hero h1, .wedding h2, .section h2 { margin: 0; font-weight: 950; letter-spacing: -.055em; line-height: .96; }
.hero h1 { max-width: 720px; font-size: clamp(60px, 8vw, 124px); line-height: 1.06; }
.hero h1 span { color: white; }
.hero h1 span::after { content: ''; display: inline-block; width: .13em; height: .13em; margin-left: .05em; border-radius: 50%; background: var(--gold); }
.hero-lead { max-width: 650px; margin: 30px 0 38px; color: rgb(255 255 255 / 82%); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.hero-photo { width: min(45vw, 610px); min-height: 510px; margin: 0; overflow: hidden; border-radius: 34px; box-shadow: 0 34px 80px rgb(0 0 0 / 26%); transform: translateZ(0); transition: transform .7s var(--ease-smooth), box-shadow .7s var(--ease-soft); }
.hero-photo:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 42px 90px rgb(0 0 0 / 32%); }
.hero-photo img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; object-position: 66% center; transition: transform 1s var(--ease-smooth); }
.hero-photo:hover img { transform: scale(1.025); }

.flower-mark { position: relative; width: min(40vw, 440px); aspect-ratio: 1; margin: auto; transition: transform .5s var(--ease-smooth); }
.flower-mark:hover { transform: scale(1.035) rotate(1deg); }
.flower-mark i { position: absolute; display: block; border-radius: 50%; transition: transform .42s var(--ease-smooth); }
.flower-mark:hover i:nth-child(odd) { transform: translateY(-7px) scale(1.025); }
.flower-mark:hover i:nth-child(even) { transform: translateY(5px) scale(.985); }
.flower-mark-hero i:nth-child(1) { width: 32%; height: 32%; left: 36%; top: 8%; background: var(--gold); }
.flower-mark-hero i:nth-child(2) { width: 28%; height: 28%; left: 13%; top: 29%; background: var(--pink); }
.flower-mark-hero i:nth-child(3) { width: 33%; height: 33%; right: 5%; top: 32%; background: var(--green-2); }
.flower-mark-hero i:nth-child(4) { width: 25%; height: 25%; left: 37%; top: 34%; background: #fff8ef; }
.flower-mark-hero i:nth-child(5) { width: 20%; height: 20%; left: 25%; bottom: 16%; background: var(--green-2); }
.flower-mark-hero i:nth-child(6) { width: 22%; height: 22%; right: 25%; bottom: 7%; background: var(--gold); }
.flower-mark-hero i:nth-child(7) { width: 15%; height: 15%; left: 4%; top: 54%; background: var(--pink); }

.promise-strip { min-height: 82px; padding: 18px clamp(22px, 5vw, 90px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: center; background: var(--gold); }
.promise-strip div { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.promise-icon { font-size: 25px; }

.section { padding: clamp(76px, 9vw, 132px) clamp(22px, 6vw, 96px); }
.section h2 { font-size: clamp(44px, 6vw, 88px); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.section-note { max-width: 390px; margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.filters, .occasion-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 38px 0 46px; }
.filter, .pill { min-height: 44px; padding: 10px 22px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-weight: 750; cursor: pointer; transition: color .28s var(--ease-soft), background-color .28s var(--ease-soft), border-color .28s var(--ease-soft), transform .3s var(--ease-smooth); }
.filter:hover, .pill:hover, .filter.active, .pill.active { color: white; border-color: var(--ink); background: var(--ink); }
.filter:hover, .pill:hover { transform: translateY(-2px) scale(1.025); }

.catalog { background: var(--cream); }
.catalog-toolbar { margin: 42px 0 20px; display: grid; grid-template-columns: minmax(280px, 1fr) minmax(210px, 280px); gap: 14px; }
.catalog-search, .catalog-select { min-height: 58px; display: flex; align-items: center; background: white; border: 1px solid var(--line); border-radius: 18px; transition: border-color .3s, box-shadow .3s; }
.catalog-search:focus-within, .catalog-select:focus-within { border-color: var(--pink); box-shadow: 0 0 0 4px rgb(207 29 96 / 10%); }
.catalog-search > span[aria-hidden] { padding-left: 19px; color: var(--muted); font-size: 28px; line-height: 1; }
.catalog-search input { width: 100%; height: 56px; padding: 0 18px 0 12px; border: 0; outline: none; background: transparent; }
.catalog-select { padding-left: 17px; }
.catalog-select > span { color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.catalog-select select { min-width: 0; height: 56px; flex: 1; padding: 0 15px 0 10px; border: 0; outline: none; background: transparent; font-weight: 750; cursor: pointer; }
.catalog-type-filters { margin: 0 0 34px; }
.catalog-summary { margin-bottom: 22px; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 14px; }
.catalog-summary strong { color: var(--ink); font-size: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 28px); }
.product-card { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .38s var(--ease-smooth), opacity .25s var(--ease-soft), border-color .25s var(--ease-soft); }
.product-card:hover { transform: translateY(-6px) scale(1.008); border-color: rgb(21 19 17 / 28%); }
.product-card[hidden] { display: none; }
.product-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #e8ddd2; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s var(--ease-smooth); }
.product-card:hover img { transform: scale(1.035); }
.badge, .small-badge, .plan-badge { position: absolute; z-index: 1; padding: 8px 13px; color: var(--ink); background: var(--gold); border-radius: 7px; font-size: 12px; font-weight: 850; }
.badge { top: 16px; left: 16px; }
.product-body { min-height: 210px; padding: 24px; display: flex; flex-direction: column; }
.product-body h3 { margin: 0 0 9px; font-size: clamp(20px, 2.1vw, 29px); line-height: 1; letter-spacing: -.035em; }
.product-body p { margin: 0; color: var(--muted); line-height: 1.45; }
.product-bottom { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.product-bottom strong { font-size: 22px; }
.heart { width: 43px; height: 43px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 24px; cursor: pointer; transition: color .3s, background-color .3s, border-color .3s, transform .45s var(--ease-smooth); }
.heart:hover, .heart.liked { color: white; border-color: var(--pink); background: var(--pink); }
.heart:hover { transform: scale(1.12) rotate(-5deg); }
.catalog-product { contain: layout paint style; }
.catalog-product .product-body { min-height: 270px; }
.catalog-image-button { width: 100%; padding: 0; display: block; border: 0; cursor: pointer; }
.catalog-image-more { position: absolute; z-index: 2; top: 50%; left: 50%; padding: 11px 16px; color: white; background: rgb(21 19 17 / 82%); border-radius: 999px; font-size: 12px; font-weight: 850; letter-spacing: .03em; white-space: nowrap; opacity: 0; transform: translate(-50%, -42%) scale(.96); transition: opacity .25s var(--ease-soft), transform .3s var(--ease-smooth); pointer-events: none; }
.catalog-image-button:hover .catalog-image-more, .catalog-image-button:focus-visible .catalog-image-more { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.catalog-image-button:focus-visible { outline-offset: -5px; }
.catalog-kind { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 9px 12px; overflow: hidden; color: white; background: rgb(18 60 42 / 94%); border: 1px solid rgb(255 255 255 / 24%); border-radius: 11px; font-size: 11px; font-weight: 850; letter-spacing: .04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-color { display: flex; align-items: center; gap: 8px; margin-bottom: 12px !important; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.color-dot { width: 9px; height: 9px; flex: 0 0 auto; border: 1px solid rgb(0 0 0 / 14%); border-radius: 50%; background: var(--dot-color); }
.color-red { --dot-color: #a81428; }
.color-pink { --dot-color: #da4d81; }
.color-blush { --dot-color: #efb7bd; }
.color-peach { --dot-color: #ec9b79; }
.color-orange { --dot-color: #e46d22; }
.color-yellow { --dot-color: #e7bd2d; }
.color-white { --dot-color: #f7f3df; }
.color-lavender { --dot-color: #b49bc5; }
.color-green { --dot-color: #a9bf83; }
.color-bicolor { --dot-color: linear-gradient(135deg, #f4d8d2 50%, #be254f 50%); }
.price-request { max-width: 145px; font-size: 16px !important; line-height: 1.15; }
.catalog-more { width: 100%; margin-top: 16px; padding: 12px 0 0; display: flex; justify-content: space-between; color: var(--ink); background: transparent; border: 0; border-top: 1px solid var(--line); font-weight: 850; cursor: pointer; transition: color .25s; }
.catalog-more:hover { color: var(--pink); }
.catalog-cart { width: 100%; min-height: 43px; margin-top: 10px; padding: 10px 14px; color: white; background: var(--green); border: 0; border-radius: 999px; font-size: 13px; font-weight: 850; cursor: pointer; transition: background-color .25s var(--ease-soft), transform .3s var(--ease-smooth); }
.catalog-cart:hover { background: var(--pink); transform: translateY(-2px); }
.load-more { min-width: 230px; margin: 42px auto 0; display: flex; }
.catalog-empty { margin: 40px auto; max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.5; text-align: center; }

.picker { background: var(--paper); }
.occasion-pills { margin-bottom: 70px; }
.budget-label { margin-top: 0; }
.budget-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.budget-card { min-height: 335px; padding: 0; display: flex; flex-direction: column; position: relative; overflow: hidden; text-align: left; border: 1px solid var(--line); border-radius: 22px; background: white; cursor: pointer; transition: transform .36s var(--ease-smooth), border-color .28s var(--ease-soft); }
.budget-card.green { --card-color: var(--green-2); }
.budget-card.gold { --card-color: var(--gold); }
.budget-card.pink { --card-color: #e82877; }
.budget-card.dark { --card-color: var(--green); }
.budget-card:hover, .budget-card.selected { transform: translateY(-5px) scale(1.012); border-color: var(--ink); }
.budget-card .small-badge { z-index: 2; top: 16px; left: 16px; background: white; }
.budget-visual { height: 57%; flex: 0 0 57%; position: relative; overflow: hidden; background: var(--card-color); }
.budget-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgb(0 0 0 / 18%)); pointer-events: none; }
.budget-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-smooth), filter .4s var(--ease-soft); }
.budget-card:hover .budget-visual img, .budget-card.selected .budget-visual img { transform: scale(1.045); filter: saturate(1.05); }
.budget-card strong, .budget-card small, .budget-card b { position: relative; padding-inline: 20px; }
.budget-card strong { margin-top: 13px; font-size: clamp(18px, 1.55vw, 24px); }
.budget-card small { margin-top: 5px; color: var(--muted); font-weight: 750; line-height: 1.3; }
.budget-card b { margin-top: auto; padding-bottom: 15px; font-size: 17px; }
.picker-services { margin-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.picker-services > div { min-height: 112px; padding: 22px 25px; display: flex; gap: 17px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 22px; transition: transform .35s var(--ease-smooth), border-color .25s var(--ease-soft), box-shadow .35s var(--ease-soft); }
.picker-services > div:hover { transform: translateY(-3px); border-color: var(--pink); box-shadow: var(--shadow); }
.picker-services > div > span { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; color: white; background: var(--pink); border-radius: 50%; font-size: 22px; }
.picker-services > div:nth-child(2) > span { background: var(--green); }
.picker-services p { margin: 0; display: grid; gap: 6px; }
.picker-services strong { font-size: 18px; }
.picker-services small { color: var(--muted); line-height: 1.4; }
.picker-cta { margin-top: 54px; padding: 26px 30px; display: flex; align-items: center; justify-content: flex-end; gap: 14px; border: 1px solid var(--line); border-radius: 24px; }
.picker-cta p { margin: 0 auto 0 0; font-size: 17px; line-height: 1.5; }
.picker-showcase { margin-top: 34px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.picker-photo { min-height: 520px; margin: 0; overflow: hidden; }
.picker-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform .8s var(--ease-smooth); }
.picker-showcase:hover .picker-photo img { transform: scale(1.018); }
.picker-results-panel { padding: clamp(28px, 4vw, 50px); }
.picker-results-panel h3 { margin: -7px 0 24px; font-size: clamp(31px, 4vw, 48px); letter-spacing: -.045em; line-height: 1; }
.picker-results { display: grid; gap: 10px; }
.picker-result { width: 100%; padding: 9px; display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center; color: var(--ink); text-align: left; background: var(--cream); border: 1px solid transparent; border-radius: 17px; cursor: pointer; transition: transform .35s var(--ease-smooth), border-color .25s var(--ease-soft), background-color .25s var(--ease-soft); }
.picker-result:hover { transform: translateX(5px); border-color: var(--pink); background: white; }
.picker-result img { width: 76px; height: 92px; object-fit: cover; border-radius: 11px; }
.picker-result > span { min-width: 0; display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; }
.picker-result b { overflow: hidden; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.picker-result small { grid-column: 1; color: var(--muted); }
.picker-result strong { grid-column: 2; grid-row: 1 / 3; font-size: 16px; white-space: nowrap; }

.wedding { min-height: 590px; padding: clamp(66px, 8vw, 110px) clamp(26px, 7vw, 110px); display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; color: white; background: var(--green); overflow: hidden; }
.wedding h2 { font-size: clamp(55px, 7.5vw, 110px); }
.wedding-copy > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 34px; color: rgb(255 255 255 / 82%); font-size: 20px; line-height: 1.5; }
.wedding-photo { width: min(42vw, 610px); min-height: 470px; margin: 0; overflow: hidden; justify-self: end; border-radius: 32px; box-shadow: 0 28px 70px rgb(0 0 0 / 30%); transition: transform .65s var(--ease-smooth); }
.wedding-photo:hover { transform: translateY(-5px) scale(1.012); }
.wedding-photo img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; object-position: center; transition: transform .85s var(--ease-smooth); }
.wedding-photo:hover img { transform: scale(1.025); }
.flower-mark-wedding i:nth-child(1) { width: 30%; height: 30%; top: 2%; left: 35%; background: #285a3e; }
.flower-mark-wedding i:nth-child(2) { width: 22%; height: 22%; top: 10%; right: 6%; background: var(--gold); }
.flower-mark-wedding i:nth-child(3) { width: 17%; height: 17%; top: 22%; left: 3%; background: #fff3e3; }
.flower-mark-wedding i:nth-child(4) { width: 26%; height: 26%; top: 29%; right: 1%; background: #be1858; }
.flower-mark-wedding i:nth-child(5) { width: 23%; height: 23%; top: 35%; left: 20%; background: #f7ead8; }
.flower-mark-wedding i:nth-child(6) { width: 24%; height: 24%; bottom: 11%; left: 10%; background: var(--gold); }
.flower-mark-wedding i:nth-child(7) { width: 25%; height: 25%; bottom: 22%; right: 13%; background: var(--pink); }
.flower-mark-wedding i:nth-child(8) { width: 18%; height: 18%; bottom: 4%; right: 2%; background: #285a3e; }
.flower-mark-wedding i:nth-child(9) { width: 13%; height: 13%; top: 50%; left: 46%; background: white; }

.order { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 120px); align-items: start; background: var(--paper); }
.order-intro { position: sticky; top: 130px; }
.order-intro h2 { font-size: clamp(54px, 6vw, 82px); }
.order-intro > p:last-child { max-width: 470px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.order-form { padding: clamp(22px, 4vw, 42px); background: var(--cream); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.order-form label > span, .contact-methods legend, .delivery-methods legend { display: block; margin: 0 0 8px 4px; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.order-form input, .order-form select, .order-form textarea { width: 100%; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 15px; outline: none; transition: border-color .2s, box-shadow .2s; }
.order-form input, .order-form select { height: 54px; padding: 0 15px; }
.order-form textarea { min-height: 116px; padding: 15px; resize: vertical; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgb(207 29 96 / 12%); }
.message-label { display: block; margin-top: 16px; }
.delivery-methods { margin: 22px 0 0; padding: 0; border: 0; }
.delivery-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.delivery-option { position: relative; cursor: pointer; }
.delivery-option input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-option span { min-height: 76px; margin: 0 !important; padding: 14px 16px; display: flex !important; flex-direction: column; justify-content: center; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 15px; text-transform: none !important; letter-spacing: 0 !important; transition: color .25s var(--ease-soft), background-color .25s var(--ease-soft), border-color .25s var(--ease-soft), transform .3s var(--ease-smooth); }
.delivery-option b { font-size: 16px; }
.delivery-option small { margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 500; }
.delivery-option:hover span { transform: translateY(-2px); border-color: var(--green-2); }
.delivery-option input:checked + span { color: white; background: var(--green); border-color: var(--green); }
.delivery-option input:checked + span small { color: rgb(255 255 255 / 70%); }
.delivery-option input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 3px; }
.delivery-address-fields { max-height: 0; margin-top: 0; overflow: hidden; opacity: 0; transform: translateY(-7px); transition: max-height .32s var(--ease-smooth), margin-top .32s var(--ease-smooth), opacity .22s var(--ease-soft), transform .32s var(--ease-smooth); }
.delivery-address-fields.is-open { max-height: 90px; margin-top: 16px; opacity: 1; transform: translateY(0); }
.delivery-address-fields label { display: block; }
.contact-methods { margin: 22px 0 16px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border: 0; }
.contact-methods legend { grid-column: 1 / -1; }
.contact-choice { position: relative; }
.contact-choice input { position: absolute; opacity: 0; pointer-events: none; }
.contact-choice span { min-height: 52px; margin: 0 !important; padding: 14px 10px; display: flex !important; align-items: center; justify-content: center; color: white; border: 2px solid transparent; border-radius: 14px; font-size: 15px !important; text-transform: none !important; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.contact-choice.whatsapp span { background: var(--pink); }
.contact-choice.telegram span { background: var(--green); }
.contact-choice.phone span { color: var(--ink); background: white; }
.contact-choice input:checked + span { box-shadow: 0 0 0 3px var(--gold); transform: translateY(-2px); }
.contact-detail { display: block; }
.contact-detail small { display: block; min-height: 18px; margin: 7px 4px 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.consent { margin: 17px 0 20px; display: flex; align-items: center; gap: 10px; color: var(--muted); cursor: pointer; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--pink); }
.consent span { margin: 0 !important; font-size: 13px !important; font-weight: 500 !important; text-transform: none !important; letter-spacing: 0 !important; }
.button-submit { width: 100%; color: white; justify-content: space-between; background: var(--ink); font-size: 18px; }
.button-submit:hover { background: var(--pink); }
.button-submit[disabled] { cursor: wait; opacity: .65; }
.form-status { min-height: 22px; margin: 13px 0 0; font-size: 14px; font-weight: 700; text-align: center; }
.form-status.error { color: #a10d30; }
.form-status.success { color: var(--green-2); }
.order-cart-summary { margin: 16px 0 0; padding: 15px 17px; color: var(--ink); background: rgb(239 169 22 / 13%); border: 1px solid rgb(239 169 22 / 35%); border-radius: 15px; font-size: 13px; line-height: 1.55; }
.order-cart-summary strong { display: block; margin-bottom: 4px; }

.location { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr); gap: clamp(32px, 6vw, 88px); align-items: center; color: white; background: var(--green); }
.location h2 { color: white; }
.location-address { margin: 34px 0 12px; color: white; font-size: clamp(24px, 3vw, 38px); font-weight: 850; line-height: 1.2; letter-spacing: -.025em; }
.location-note { max-width: 520px; margin: 0 0 32px; color: rgb(255 255 255 / 76%); font-size: 17px; line-height: 1.6; }
.map-card { min-height: 520px; overflow: hidden; background: #e8ddd2; border: 1px solid rgb(255 255 255 / 18%); border-radius: 28px; box-shadow: 0 20px 50px rgb(0 0 0 / 18%); }
.map-card iframe { width: 100%; height: 520px; display: block; border: 0; }

.site-footer { padding: 42px clamp(22px, 6vw, 96px) 28px; display: grid; grid-template-columns: 1.3fr .8fr 1fr auto; gap: 30px; align-items: center; border-top: 1px solid var(--line); background: var(--cream); }
.footer-logo { color: var(--green); }
.site-footer nav { display: grid; gap: 7px; font-weight: 700; }
.site-footer nav a:hover { color: var(--pink); }
.footer-phone { font-size: clamp(20px, 2.5vw, 30px); font-weight: 900; }
.site-footer p { margin: 5px 0 0; color: var(--muted); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 23px; transition: .2s; }
.footer-socials a:hover { color: white; background: var(--green); }
.footer-legal { grid-column: 1 / -1; padding-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }
.footer-legal span { margin-right: auto; }
.footer-legal button { padding: 0; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid rgb(21 19 17 / 24%); cursor: pointer; transition: color .25s var(--ease-soft), border-color .25s var(--ease-soft); }
.footer-legal button:hover { color: var(--pink); border-color: var(--pink); }

.success-dialog { width: min(92vw, 520px); padding: 42px; text-align: center; border: 0; border-radius: 28px; box-shadow: 0 30px 100px rgb(0 0 0 / 25%); }
.success-dialog::backdrop { background: rgb(18 60 42 / 80%); }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.success-mark { width: 66px; height: 66px; margin: 0 auto 20px; display: grid; place-items: center; color: white; background: var(--green-2); border-radius: 50%; font-size: 32px; font-weight: 900; }
.success-dialog h2 { margin: 0; font-size: 34px; letter-spacing: -.04em; }
.success-dialog p { margin: 16px 0 26px; color: var(--muted); line-height: 1.5; }
.dialog-ok { min-width: 180px; }

.shop-dialog { width: min(94vw, 650px); max-height: 90vh; padding: 0; overflow: auto; color: var(--ink); background: var(--paper); border: 0; border-radius: 28px; box-shadow: 0 30px 100px rgb(0 0 0 / 28%); }
.shop-dialog::backdrop { background: rgb(18 60 42 / 82%); backdrop-filter: blur(4px); }
.shop-dialog-content { padding: clamp(30px, 6vw, 54px); }
.shop-dialog-content > .eyebrow { margin-top: 0; }
.shop-dialog-content > h2 { margin: 0 0 26px; font-size: clamp(42px, 7vw, 64px); line-height: .95; letter-spacing: -.055em; }
.auth-tabs { margin-bottom: 20px; padding: 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--cream); border-radius: 999px; }
.auth-tabs button { min-height: 43px; color: var(--muted); background: transparent; border: 0; border-radius: 999px; font-weight: 800; cursor: pointer; }
.auth-tabs button.active { color: white; background: var(--green); }
.auth-form { display: none; gap: 14px; }
.auth-form.is-active { display: grid; }
.auth-form[hidden] { display: none !important; }
.auth-form label > span { display: block; margin: 0 0 7px 4px; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.auth-form input { width: 100%; height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; outline: 0; }
.auth-form input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgb(207 29 96 / 12%); }
.auth-divider { margin: 20px 0; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; }
.auth-divider[hidden], .google-auth[hidden] { display: none !important; }
.auth-divider::before, .auth-divider::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.google-auth { width: 100%; color: var(--ink); background: white; border-color: var(--line); }
.google-auth b { color: #4285f4; font-size: 20px; }
.google-auth.is-disabled { opacity: .55; }
.auth-status { min-height: 20px; margin: 14px 0 0; color: var(--muted); text-align: center; font-size: 13px; font-weight: 700; }
.auth-status.error { color: #a10d30; }
.auth-status.success { color: var(--green-2); }
.auth-user { text-align: center; }
.auth-avatar { width: 72px; height: 72px; margin: 0 auto 18px; display: grid; place-items: center; color: white; background: var(--pink); border-radius: 50%; font-size: 31px; font-weight: 950; }
.auth-user h3 { margin: 0; font-size: 28px; }
.auth-user p { margin: 7px 0 24px; color: var(--muted); }
.cart-items { display: grid; gap: 12px; }
.cart-item { padding: 12px; display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center; background: var(--cream); border-radius: 17px; }
.cart-item img { width: 76px; height: 92px; object-fit: cover; border-radius: 12px; }
.cart-item h3 { margin: 0 0 5px; font-size: 18px; }
.cart-item p { margin: 0; color: var(--muted); font-size: 12px; }
.cart-item-price { display: block; margin-top: 6px; font-size: 14px; }
.cart-quantity { display: flex; align-items: center; gap: 8px; }
.cart-quantity button, .cart-remove { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.cart-remove { margin-top: 9px; margin-left: auto; color: var(--pink); }
.cart-empty { padding: 42px 16px; color: var(--muted); background: var(--cream); border-radius: 18px; text-align: center; }
.cart-footer { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-total { display: block; margin-bottom: 5px; font-size: 22px; }
.cart-footer > p { margin: 0 0 17px; color: var(--muted); font-size: 13px; }
.cart-actions { display: flex; gap: 10px; }
.cart-actions .button { flex: 1; padding-inline: 18px; }

.product-dialog { width: min(94vw, 1080px); max-height: 90vh; padding: 0; overflow: auto; border: 0; border-radius: 30px; background: var(--paper); box-shadow: 0 30px 100px rgb(0 0 0 / 28%); }
.product-dialog::backdrop { background: rgb(18 60 42 / 84%); }
.product-dialog .dialog-close { z-index: 3; color: var(--ink); background: rgb(255 255 255 / 94%); border-radius: 50%; }
.product-dialog-grid { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(400px, 1.1fr); min-height: 680px; }
.product-dialog-image { min-height: 680px; overflow: hidden; background: #e5e8e5; }
.product-dialog-image img { width: 100%; height: 100%; object-fit: cover; }
.product-dialog-content { padding: clamp(35px, 5vw, 68px); display: flex; flex-direction: column; }
.product-dialog-content h2 { margin: 0; font-size: clamp(45px, 5vw, 72px); line-height: .95; letter-spacing: -.055em; }
.product-dialog-description { margin: 24px 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.product-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.product-facts div { padding: 17px 12px; border-right: 1px solid var(--line); }
.product-facts div:first-child { padding-left: 0; }
.product-facts div:last-child { border-right: 0; }
.product-facts span, .product-dialog-bottom span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.product-facts strong { font-size: 14px; }
.size-picker { margin: 28px 0; padding: 0; border: 0; }
.size-picker legend { margin-bottom: 12px; font-weight: 850; }
.size-picker > div { display: flex; flex-wrap: wrap; gap: 9px; }
.size-picker label { position: relative; cursor: pointer; }
.size-picker input { position: absolute; opacity: 0; }
.size-picker span { min-width: 116px; padding: 10px 16px; display: grid; gap: 2px; text-align: center; background: white; border: 1px solid var(--line); border-radius: 18px; font-weight: 750; transition: .25s; }
.size-picker span small { font-size: 11px; font-weight: 650; opacity: .72; }
.size-picker input:checked + span { color: white; border-color: var(--green); background: var(--green); box-shadow: 0 7px 18px rgb(18 60 42 / 18%); }
.product-dialog-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.product-dialog-bottom > div > strong { font-size: 21px; }
.availability-note { margin: 20px 0 0; color: var(--muted); font-size: 13px; }
.availability-note i { width: 8px; height: 8px; margin-right: 7px; display: inline-block; background: var(--green-2); border-radius: 50%; box-shadow: 0 0 0 4px rgb(57 119 77 / 12%); }

.legal-dialog { width: min(94vw, 860px); max-height: 90vh; padding: 0; overflow: auto; color: var(--ink); background: var(--paper); border: 0; border-radius: 28px; box-shadow: 0 30px 100px rgb(0 0 0 / 28%); }
.legal-dialog::backdrop { background: rgb(10 9 8 / 66%); }
.legal-dialog-close { position: sticky; z-index: 3; top: 18px; float: right; margin: 18px 18px -70px 0; }
.legal-document { padding: clamp(34px, 6vw, 70px); }
.legal-document h2 { max-width: 680px; margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: .96; letter-spacing: -.05em; }
.legal-updated { margin: 18px 0 42px !important; color: var(--muted); font-size: 13px !important; }
.legal-document h3 { margin: 34px 0 10px; font-size: 21px; }
.legal-document p { margin: 0 0 14px; color: #4f4843; font-size: 16px; line-height: 1.65; }
.legal-document a, .legal-inline-link { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.legal-inline-link { padding: 0; background: transparent; border: 0; cursor: pointer; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.js .reveal-on-scroll { opacity: 0; transform: translateY(18px) scale(.995); transition: opacity .48s var(--ease-soft), transform .55s var(--ease-smooth); }
.js .reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.js .reveal-on-scroll .section-heading,
.js .reveal-on-scroll > .eyebrow,
.js .reveal-on-scroll > h2,
.js .reveal-on-scroll .order-intro { transition: transform .58s var(--ease-smooth); }
.js .reveal-on-scroll:not(.is-visible) .section-heading,
.js .reveal-on-scroll:not(.is-visible) > .eyebrow,
.js .reveal-on-scroll:not(.is-visible) > h2,
.js .reveal-on-scroll:not(.is-visible) .order-intro { transform: translateY(12px); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto auto auto; grid-template-areas: 'logo . lang phone order'; }
  .main-nav { display: none; }
  .header-phone { justify-self: end; }
  .product-grid, .budget-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .order { grid-template-columns: 1fr; }
  .order-intro { position: static; }
  .location { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { height: 470px; min-height: 470px; }
}

@media (max-width: 780px) {
  .site-header { min-height: 72px; padding: 12px 20px; grid-template-columns: auto 1fr auto auto auto; grid-template-areas: 'logo . lang shop menu'; }
  .header-phone, .header-order { display: none; }
  .menu-toggle { width: 46px; height: 46px; padding: 13px 10px; display: flex; grid-area: menu; flex-direction: column; justify-content: center; gap: 7px; border: 0; border-radius: 50%; background: var(--ink); }
  .language-switch button { min-width: 31px; padding-inline: 6px; }
  .header-shop-actions { gap: 5px; }
  .header-chip { width: 38px; height: 38px; min-height: 38px; padding: 0; display: grid; place-items: center; }
  .header-account span, .header-cart .cart-label { display: none; }
  .header-account::before { content: '◉'; font-size: 17px; }
  .header-cart b { min-width: 24px; height: 24px; }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; background: white; transition: .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 72px 0 0; padding: 35px 24px; display: none; flex-direction: column; justify-content: flex-start; gap: 8px; color: white; background: var(--green); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; font-size: 28px; }
  .hero { min-height: 710px; padding: 70px 24px 50px; grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: clamp(58px, 17vw, 84px); }
  .hero-lead { font-size: 17px; }
  .hero-photo { width: 100%; min-height: 420px; }
  .hero-photo img { min-height: 420px; }
  .flower-mark { width: min(78vw, 360px); }
  .flower-mark-hero { margin-top: -20px; }
  .promise-strip { grid-template-columns: 1fr; padding-block: 22px; }
  .promise-strip div { justify-content: flex-start; }
  .section-heading { display: block; }
  .section-note { margin-top: 20px; }
  .product-grid { display: flex; margin-inline: -22px; padding: 0 22px 18px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .product-card { flex: 0 0 80vw; scroll-snap-align: start; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .catalog-summary { align-items: flex-start; flex-direction: column; gap: 5px; }
  .catalog-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .catalog-grid .product-card { min-width: 0; width: auto; }
  .catalog-product .product-body { min-height: 250px; padding: 18px; }
  .catalog-product .product-body h3 { font-size: 21px; }
  .product-dialog-grid { grid-template-columns: 1fr; }
  .product-dialog-image { min-height: 390px; max-height: 54vh; }
  .product-dialog-content { padding: 32px 22px; }
  .product-dialog-bottom { align-items: stretch; flex-direction: column; }
  .filters { margin-bottom: 28px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter { flex: 0 0 auto; }
  .budget-grid { grid-template-columns: 1fr 1fr; }
  .budget-card { min-height: 310px; }
  .picker-services { grid-template-columns: 1fr; }
  .picker-showcase { grid-template-columns: 1fr; }
  .picker-photo, .picker-photo img { min-height: 390px; }
  .picker-cta { align-items: stretch; flex-direction: column; }
  .picker-cta p { margin-bottom: 10px; }
  .wedding { min-height: 760px; padding: 70px 24px; grid-template-columns: 1fr; }
  .wedding-photo { width: 100%; min-height: 390px; margin-top: 26px; }
  .wedding-photo img { min-height: 390px; }
  .flower-mark-wedding { margin-top: 20px; }
  .plans { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; text-align: left; }
  .plan { flex: 0 0 78vw; scroll-snap-align: start; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .delivery-options { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-legal { grid-column: 1; align-items: flex-start; flex-direction: column; }
  .footer-legal span { margin: 0 0 8px; }
}

@media (max-width: 500px) {
  .language-switch button { min-width: 29px; padding-inline: 5px; }
  .site-header { padding-inline: 14px; gap: 8px; }
  .language-switch { gap: 0; }
  .language-switch button { min-width: 27px; padding-inline: 4px; font-size: 10px; }
  .hero h1 { font-size: clamp(46px, 12.5vw, 58px); }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .section { padding-inline: 18px; }
  .section h2 { font-size: 43px; }
  .product-grid { margin-inline: -18px; padding-inline: 18px; }
  .product-card { flex-basis: 84vw; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-grid { margin-inline: 0; padding-inline: 0; }
  .catalog-grid .product-card { width: 100%; }
  .catalog-product .product-body { min-height: 245px; }
  .product-dialog { width: 96vw; border-radius: 22px; }
  .product-dialog-image { min-height: 340px; }
  .product-facts { grid-template-columns: 1fr; }
  .product-facts div, .product-facts div:first-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-facts div:last-child { border-bottom: 0; }
  .shop-dialog { width: 96vw; border-radius: 22px; }
  .shop-dialog-content { padding: 34px 18px 24px; }
  .cart-item { grid-template-columns: 62px 1fr; }
  .cart-item img { width: 62px; height: 78px; }
  .cart-item-actions { grid-column: 2; display: flex; align-items: center; justify-content: space-between; }
  .cart-remove { margin: 0; }
  .cart-actions { flex-direction: column; }
  .budget-grid { grid-template-columns: 1fr; }
  .budget-card { min-height: 330px; }
  .picker-services > div { padding: 19px 17px; }
  .picker-results-panel { padding: 28px 16px; }
  .picker-result { grid-template-columns: 64px 1fr; }
  .picker-result img { width: 64px; height: 80px; }
  .picker-result > span { grid-template-columns: 1fr; }
  .picker-result strong { grid-column: 1; grid-row: auto; }
  .picker-cta { padding: 22px 18px; }
  .order-form { padding: 20px 14px; }
  .success-dialog { padding: 38px 22px 28px; }
  .location { padding-inline: 18px; }
  .map-card, .map-card iframe { height: 390px; min-height: 390px; }
  .legal-dialog { width: 96vw; border-radius: 22px; }
  .legal-document { padding: 46px 22px 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js .reveal-on-scroll { opacity: 1; transform: none; }
}
