:root {
  --ink: #17211c;
  --muted: #66716b;
  --line: #dde8df;
  --paper: #ffffff;
  --sage: #dfeee2;
  --sage-2: #eef7ef;
  --leaf: #2d7452;
  --leaf-dark: #19533b;
  --berry: #8b2545;
  --blush: #f3c6ca;
  --shadow: 0 24px 70px rgba(25, 83, 59, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 8px;
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(139, 37, 69, 0.34);
  outline-offset: 3px;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--berry);
  border-radius: 50%;
  font-size: 17px;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 28px;
  color: #3e4b44;
  font-size: 15px;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--berry);
}

.header-actions {
  position: relative;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--leaf-dark);
  background: var(--sage-2);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu div {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 60;
  display: grid;
  gap: 4px;
  width: min(260px, calc(100vw - 28px));
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 12px;
  color: var(--leaf-dark);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
}

.mobile-menu a:hover {
  background: var(--sage-2);
}

.icon-button,
.cart-button,
.product-card button,
.filters button,
.checkout-button,
.panel-close {
  border: 0;
  cursor: pointer;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--leaf-dark);
  background: var(--sage-2);
  border-radius: 50%;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  color: var(--leaf-dark);
  background: white;
  border-radius: 50%;
  font-size: 12px;
}

.cart-button small {
  padding-left: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.cart-button.has-items {
  background: var(--berry);
  box-shadow: 0 12px 28px rgba(126, 45, 74, 0.2);
}

.cart-button:hover,
.cart-button:focus-visible {
  transform: translateY(-1px);
}

.cart-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  display: grid;
  gap: 12px;
  width: min(340px, calc(100vw - 28px));
  padding: 14px;
  color: var(--leaf-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(25, 83, 59, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cart-popover::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 14px;
}

.cart-button:hover + .cart-popover,
.cart-button:focus-visible + .cart-popover,
.cart-popover.is-open,
.cart-popover:hover,
.cart-popover:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-popover-head,
.cart-popover-actions,
.cart-popover-items a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-popover-head strong {
  font-size: 15px;
}

.cart-popover-head span,
.cart-popover-items small,
.cart-popover-empty span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cart-popover-items {
  display: grid;
  gap: 8px;
}

.cart-popover-items a {
  justify-content: flex-start;
  padding: 8px;
  color: inherit;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.cart-popover-items img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
}

.cart-popover-items span,
.cart-popover-empty {
  display: grid;
  gap: 4px;
}

.cart-popover-actions a,
.cart-popover-actions button,
.cart-popover-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: white;
  background: var(--leaf-dark);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.cart-popover-actions button {
  color: var(--leaf-dark);
  background: var(--sage-2);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr);
  gap: 28px;
  width: min(1460px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 52px 0 54px;
}

.catalog-section,
.delivery-section,
.occasions-section,
.reviews-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 26% 5% -9%;
  z-index: -1;
  background: linear-gradient(135deg, #f5fbf6 0%, #ffffff 54%, #f7edf1 100%);
  border-radius: 0 0 52px 0;
}

.hero-copy {
  align-self: center;
  max-width: 630px;
  padding: 22px 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 6.1vw, 92px);
  line-height: 0.94;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.primary-link {
  padding: 0 24px;
  color: white;
  background: var(--berry);
  box-shadow: 0 16px 35px rgba(139, 37, 69, 0.22);
}

.secondary-link {
  padding: 0 20px;
  color: var(--leaf-dark);
  background: white;
  border: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.trust-row div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-row svg {
  color: var(--leaf);
}

.trust-row span,
.trust-row small {
  display: block;
}

.trust-row span {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
}

.trust-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-media::before {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 9%;
  width: 70%;
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 50%;
}

.hero-vase,
.hero-bouquet {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-vase {
  inset: 6% 0 auto 5%;
  width: 82%;
  height: 72%;
  border-radius: 8px 8px 110px 8px;
}

.hero-bouquet {
  right: 0;
  bottom: 6%;
  width: 48%;
  height: 38%;
  border: 8px solid white;
  border-radius: 8px;
}

.cart-panel {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cart-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 90px;
}

.cart-page-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 28px;
}

.cart-page-head h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}

.cart-page-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.cart-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
  align-items: start;
}

.cart-flow {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-steps button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: var(--muted);
  background: #f8fbf8;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.checkout-steps span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--leaf-dark);
  background: white;
  border-radius: 50%;
  font-size: 12px;
}

.checkout-steps button.active {
  color: white;
  background: var(--leaf-dark);
}

.checkout-steps button.active span {
  color: var(--leaf-dark);
}

.checkout-steps button.completed {
  color: var(--leaf-dark);
  background: var(--sage-2);
}

.checkout-step-panel {
  display: none;
}

.checkout-step-panel.active {
  display: grid;
  gap: 12px;
}

.checkout-step-head {
  display: grid;
  gap: 7px;
  margin-bottom: 6px;
}

.checkout-step-head span {
  color: var(--berry);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-step-head h2 {
  font-size: 30px;
  line-height: 1.05;
}

.checkout-step-head p {
  color: var(--muted);
  line-height: 1.5;
}

.checkout-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.checkout-step-actions button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--leaf-dark);
  background: var(--sage-2);
  border-radius: 8px;
  font-weight: 900;
}

.checkout-step-actions button[data-step-next] {
  margin-left: auto;
  color: white;
  background: var(--leaf-dark);
}

.cart-page-panel,
.cart-page-summary {
  position: static;
}

.cart-page-summary {
  position: sticky;
  top: 92px;
}

.checkout-page-form {
  margin-top: 18px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cart-head,
.cart-item,
.totals p,
.section-title,
.delivery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 850;
}

.panel-close {
  display: none;
  width: 34px;
  height: 34px;
  background: var(--sage-2);
  border-radius: 50%;
  color: var(--leaf-dark);
  font-size: 22px;
}

.cart-items {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.cart-item {
  align-items: flex-start;
}

.cart-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item div {
  flex: 1;
}

.cart-item strong {
  display: block;
  font-size: 14px;
}

.cart-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  width: 24px;
  height: 24px;
  color: var(--leaf-dark);
  background: var(--sage-2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.promo-form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.promo-row button {
  min-height: 42px;
  padding: 0 12px;
  color: white;
  background: var(--berry);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.promo-form p {
  min-height: 18px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 800;
}

.promo-form p.error {
  color: var(--berry);
}

.cart-addons {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-addons h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 950;
}

.cart-addons > div {
  display: grid;
  gap: 8px;
}

.recommendation-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recommendation-row img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.recommendation-row div {
  display: grid;
  gap: 4px;
}

.recommendation-row span {
  color: var(--muted);
  font-size: 13px;
}

.recommendation-row button {
  min-height: 36px;
  padding: 0 12px;
  color: white;
  background: var(--leaf-dark);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.address-map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.address-map-card[hidden] {
  display: none;
}

.address-map-card div {
  display: grid;
  gap: 4px;
}

.address-map-card strong {
  color: var(--leaf-dark);
  font-size: 14px;
}

.address-map-card span {
  color: var(--muted);
  font-size: 13px;
}

.address-map-card a {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 9px 12px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.addon-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.addon-option input {
  width: 18px;
  min-height: 18px;
}

.addon-option span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.addon-option strong {
  font-size: 13px;
}

.addon-option small {
  color: var(--berry);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: #435047;
  font-size: 13px;
  font-weight: 800;
}

.input-icon {
  position: relative;
  display: block;
}

.input-icon svg {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 17px;
  height: 17px;
  color: var(--leaf);
  transform: translateY(-50%);
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

input,
select {
  padding: 0 12px;
}

.input-icon input,
.input-icon select {
  padding-left: 38px;
}

textarea {
  min-height: 74px;
  resize: vertical;
  padding: 12px;
}

.totals {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.totals strong {
  color: var(--ink);
}

.totals .total {
  color: var(--ink);
  font-size: 18px;
}

.checkout-button {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 8px;
  font-weight: 850;
}

.secure-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.checkout-assurance {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-assurance span {
  position: relative;
  padding-left: 22px;
  color: #405047;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.checkout-assurance span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 10px;
  height: 10px;
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px white;
}

.catalog-section,
.delivery-section,
.occasions-section,
.reviews-section,
.faq-section {
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-title {
  margin-bottom: 28px;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: #fff8f9;
  border: 1px solid #f0dfe4;
  border-radius: 8px;
}

.promo-banner strong {
  color: var(--berry);
  font-size: 20px;
}

.promo-banner p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.promo-banner .primary-link {
  flex: 0 0 auto;
}

.section-title h2,
.delivery-section h2,
.occasions-section h2 {
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1;
}

.section-title a,
.delivery-map a {
  color: var(--berry);
  font-size: 14px;
  font-weight: 850;
}

.filters,
.collection-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.collection-strip {
  margin-bottom: 14px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 260px);
  gap: 12px;
  margin-bottom: 18px;
}

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 0.45fr)) minmax(180px, 0.7fr) minmax(170px, 0.6fr) auto;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.advanced-filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.advanced-filters input,
.advanced-filters select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.advanced-filters .filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.advanced-filters .filter-check input {
  width: auto;
  min-height: auto;
}

.advanced-filters button {
  min-height: 42px;
  align-self: end;
  padding: 0 14px;
  color: var(--leaf-dark);
  background: var(--sage-2);
  border-radius: 8px;
  font-weight: 850;
}

.catalog-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-statusbar > div:first-child {
  display: grid;
  gap: 3px;
}

.catalog-statusbar strong {
  color: var(--leaf-dark);
  font-size: 15px;
}

.catalog-statusbar span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.active-filter-chips button,
.active-filter-chips span {
  min-height: 32px;
  padding: 0 10px;
  color: var(--berry);
  background: #fff8f9;
  border: 1px solid #f0dfe4;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.active-filter-chips span {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.search-field,
.sort-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--leaf);
  transform: translateY(-50%);
}

.search-field input {
  padding-left: 44px;
}

.sort-field span {
  position: absolute;
  left: 14px;
  top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.sort-field select {
  height: 50px;
  padding: 15px 12px 0 12px;
}

.filters button,
.filters a,
.collection-strip button {
  min-height: 40px;
  padding: 0 18px;
  color: var(--leaf-dark);
  background: var(--sage-2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.filters button.active,
.filters a.active,
.collection-strip button.active {
  color: white;
  background: var(--leaf-dark);
}

.collection-strip button {
  background: #fff8f9;
  border: 1px solid #f0dfe4;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card:focus-within {
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  background: var(--sage-2);
}

.product-card-link {
  position: relative;
  display: block;
}

.favorite-button {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--berry);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.favorite-button.active {
  color: white;
  background: var(--berry);
}

.product-badges {
  position: absolute;
  inset: 12px auto auto 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 24px);
}

.product-badges b,
.product-badge-row span {
  padding: 7px 9px;
  color: var(--leaf-dark);
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-badge-row span {
  color: var(--berry);
  background: #fff8f9;
  border-color: #f0dfe4;
  font-size: 12px;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-info h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 850;
}

.product-info h3 a:hover {
  color: var(--berry);
}

.product-info p {
  min-height: 42px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--berry);
  font-size: 20px;
  font-weight: 900;
}

.product-card button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 50%;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-actions button[data-buy-now] {
  width: auto;
  min-width: 86px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.product-card button:disabled,
.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.stock-line,
.catalog-state,
.empty-cart {
  color: var(--muted);
  font-size: 13px;
}

.empty-cart a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--berry);
  font-weight: 900;
}

.catalog-state {
  grid-column: 1 / -1;
  padding: 28px;
  background: var(--sage-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.delivery-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(90deg, var(--sage-2), #ffffff);
  border-radius: 8px;
  padding: 56px;
}

.delivery-steps {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.delivery-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
}

.delivery-steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--berry);
  border-radius: 50%;
}

.delivery-steps span {
  color: #405047;
  line-height: 1.45;
}

.delivery-map {
  min-height: 270px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-info h3 {
  max-width: 430px;
  font-size: 30px;
  line-height: 1.08;
}

.map-info p {
  max-width: 420px;
  margin: 12px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.route {
  position: relative;
  height: 110px;
  margin-top: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45, 116, 82, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 116, 82, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  border-radius: 8px;
}

.route::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 54%;
  width: 80%;
  border-top: 3px dashed var(--leaf);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--berry);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(139, 37, 69, 0.12);
}

.pin.start {
  left: 7%;
  top: 46%;
}

.pin.finish {
  right: 9%;
  top: 46%;
  background: var(--leaf);
}

.car {
  position: absolute;
  left: 52%;
  top: 45%;
  color: var(--leaf-dark);
}

.delivery-controls {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.delivery-controls label {
  flex: 1;
}

.delivery-controls select {
  padding-left: 12px;
}

.delivery-controls p {
  color: var(--berry);
  font-weight: 850;
}

.occasion-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 28px;
}

.occasion-rail article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
}

.occasion-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.occasion-rail article:hover img {
  transform: scale(1.04);
}

.occasion-rail span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 10px 14px;
  color: white;
  background: rgba(23, 33, 28, 0.74);
  border-radius: 8px;
  font-weight: 850;
}

.reviews-section {
  background: #fbfdfb;
}

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

.reviews-grid article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  color: var(--berry);
  letter-spacing: 0;
}

.reviews-grid p {
  margin: 16px 0 22px;
  color: #4b5b51;
  font-size: 17px;
  line-height: 1.6;
}

.reviews-grid strong {
  font-size: 14px;
}

.faq-section {
  padding-top: 34px;
}

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

.faq-grid article {
  min-width: 0;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 17px;
  line-height: 1.3;
}

.faq-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-page h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.payment-page,
.tracking-page,
.account-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 90px);
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0;
}

.courier-page {
  place-items: start stretch;
  width: min(1220px, calc(100% - 40px));
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 90px);
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0;
}

.thanks-card {
  display: grid;
  gap: 22px;
  width: min(760px, 100%);
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.thanks-card h1 {
  font-size: clamp(44px, 6vw, 70px);
  line-height: 0.98;
}

.thanks-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.payment-card,
.tracking-card,
.account-card {
  display: grid;
  gap: 24px;
  width: min(720px, 100%);
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.courier-orders {
  margin-top: 18px;
}

.courier-order {
  text-align: left;
}

.courier-note {
  margin-top: 12px;
  color: var(--berry);
  font-size: 14px;
  font-weight: 850;
}

.payment-card h1,
.tracking-card h1,
.account-card h1 {
  font-size: clamp(44px, 6vw, 70px);
  line-height: 0.98;
}

.payment-card p,
.tracking-card p,
.account-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.account-card {
  width: min(880px, 100%);
}

.account-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.account-search .checkout-button {
  width: auto;
  min-width: 190px;
  margin-top: 0;
}

.account-note {
  padding: 12px;
  background: var(--sage-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.account-dashboard {
  display: grid;
  gap: 14px;
}

.account-dashboard[hidden] {
  display: none;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-stats article,
.account-mini-section {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.account-stats strong {
  color: var(--berry);
  font-size: 24px;
}

.account-mini-section h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 950;
}

.account-mini-section button,
.account-mini-section a {
  min-height: 38px;
  padding: 9px 11px;
  color: var(--leaf-dark);
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.account-orders {
  display: grid;
  gap: 14px;
}

.account-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-order h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.account-order p {
  margin-top: 8px;
  font-size: 14px;
}

.account-order strong {
  display: block;
  margin-top: 12px;
  color: var(--berry);
}

.account-actions {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 190px;
}

.account-actions .primary-link,
.account-actions .secondary-link,
.account-actions .checkout-button {
  min-height: 42px;
  width: 100%;
  margin: 0;
  border-radius: 8px;
}

.tracking-card {
  width: min(820px, 100%);
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.tracking-steps div {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--sage-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tracking-steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--leaf-dark);
  background: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.tracking-steps .done,
.tracking-steps .active {
  color: white;
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
}

.payment-summary {
  display: grid;
  gap: 12px;
}

.payment-summary div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.payment-summary span {
  color: var(--muted);
  font-size: 14px;
}

.payment-summary strong {
  max-width: 440px;
  text-align: right;
}

.payment-summary .payment-total {
  align-items: center;
  border-bottom: 0;
  color: var(--berry);
  font-size: 22px;
}

.tracking-nps {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(49, 71, 59, 0.12);
  border-radius: 8px;
  background: var(--sage-2);
}

.tracking-nps:empty {
  display: none;
}

.tracking-nps h2 {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 24px;
}

.tracking-nps p {
  margin: 6px 0 0;
}

.tracking-nps-scale {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
}

.tracking-nps-scale button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--leaf-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.tracking-nps-scale button.active {
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
  color: white;
}

.tracking-nps textarea {
  width: 100%;
  min-height: 88px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  resize: vertical;
  font: inherit;
}

.tracking-nps-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.tracking-nps-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.tracking-nps-done {
  display: grid;
  gap: 6px;
}

.tracking-nps-done strong {
  color: var(--leaf-dark);
  font-size: 22px;
}

.tracking-nps-done span {
  color: var(--muted);
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-actions .checkout-button {
  width: auto;
  min-width: 220px;
  margin-top: 0;
  padding: 0 22px;
}

.payment-note {
  font-size: 13px;
}

.product-page {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 120px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 96px;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.product-gallery-thumbs button {
  padding: 0;
  overflow: hidden;
  background: white;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.product-gallery-thumbs button.active {
  border-color: var(--berry);
}

.product-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.product-main {
  display: grid;
  gap: 24px;
}

.back-link {
  width: fit-content;
  color: var(--berry);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumbs a {
  color: var(--berry);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: var(--muted);
}

.same-recipient {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  background: var(--sage-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.same-recipient input {
  width: auto;
  min-height: auto;
}

.product-main h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}

.product-main p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.product-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-price-line strong {
  color: var(--berry);
  font-size: 32px;
}

.product-price-line span {
  color: var(--muted);
  font-weight: 800;
}

.product-main .checkout-button {
  width: fit-content;
  min-width: 240px;
  margin-top: 0;
  padding: 0 26px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-actions .secondary-link,
.product-actions .checkout-button {
  width: auto;
  min-width: 210px;
}

.product-actions .product-buy-now {
  background: var(--berry);
}

.product-fit {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-fit strong {
  color: var(--leaf-dark);
}

.product-fit p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.product-scenarios article,
.product-delivery-steps article {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-scenarios strong,
.product-delivery-steps strong {
  color: var(--leaf-dark);
  font-size: 14px;
}

.product-scenarios span,
.product-delivery-steps span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-delivery-steps {
  display: grid;
  gap: 8px;
}

.product-delivery-steps article {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
}

.product-delivery-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 50%;
  font-size: 13px;
}

.product-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.content-page,
.category-page {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 92px;
}

.content-hero,
.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 42px;
}

.content-hero h1,
.category-hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.96;
}

.content-hero p,
.category-hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.content-hero img,
.category-hero img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-grid,
.category-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.content-card,
.category-seo-grid article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-card strong,
.category-seo-grid strong {
  color: var(--leaf-dark);
  font-size: 18px;
}

.content-card p,
.category-seo-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.quick-order-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-order-dialog::backdrop {
  background: rgb(29 42 32 / 42%);
}

.quick-order-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: white;
}

.quick-order-form h2 {
  font-size: 34px;
}

.quick-order-form p {
  color: var(--muted);
  line-height: 1.55;
}

.quick-order-actions {
  display: flex;
  gap: 10px;
}

.product-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-facts article {
  min-width: 0;
  padding: 18px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-facts span,
.product-facts strong {
  display: block;
}

.product-facts span {
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.product-facts strong {
  margin-top: 8px;
  color: #405047;
  font-size: 14px;
  line-height: 1.5;
}

.related-section {
  margin-top: 84px;
}

.product-reviews {
  margin-top: 84px;
}

.product-reviews .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.product-reviews .section-title span {
  color: var(--muted);
  font-weight: 850;
}

.related-section h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 56px);
}

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

.related-card {
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.related-card strong,
.related-card span {
  padding: 0 16px;
}

.related-card span {
  color: var(--berry);
  font-weight: 900;
}

.product-cart-dock {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(420px, calc(100% - 40px));
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.product-cart-dock[hidden] {
  display: none;
}

.product-cart-dock strong,
.product-cart-dock span {
  display: block;
}

.product-cart-dock span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.product-cart-dock .primary-link {
  min-height: 44px;
}

.site-footer strong {
  color: var(--ink);
}

.footer-brand {
  display: grid;
  grid-template-columns: 34px auto;
}

.footer-brand p {
  grid-column: 1 / -1;
  line-height: 1.5;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  padding: 13px 18px;
  color: white;
  background: var(--leaf-dark);
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.error {
  background: var(--berry);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  }

  .cart-panel {
    position: fixed;
    inset: 78px 18px auto auto;
    z-index: 40;
    width: min(420px, calc(100vw - 36px));
    max-height: calc(100vh - 96px);
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .cart-page .cart-panel {
    position: static;
    inset: auto;
    width: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .cart-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .panel-close {
    display: grid;
  }

  .product-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    width: min(calc(100% - 28px), 760px);
    max-width: calc(100vw - 28px);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .catalog-section,
  .delivery-section,
  .occasions-section,
  .reviews-section,
  .faq-section,
  .site-footer {
    width: min(calc(100% - 28px), 760px);
    max-width: calc(100vw - 28px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
    overflow: hidden;
  }

  .hero-media {
    min-height: 430px;
    order: -1;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-copy p {
    width: min(100%, 330px);
    max-width: min(calc(100vw - 42px), 330px);
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: min(100%, 362px);
    max-width: calc(100vw - 28px);
  }

  .trust-row,
  .delivery-section,
  .site-footer,
  .account-order,
  .account-search,
  .account-stats {
    grid-template-columns: 1fr;
  }

  .delivery-section {
    padding: 34px 22px;
  }

  .delivery-controls {
    display: grid;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .occasion-rail,
  .product-grid,
  .reviews-grid,
  .faq-grid,
  .content-grid,
  .category-seo-grid,
  .content-hero,
  .category-hero,
  .related-grid,
  .product-detail,
  .catalog-tools,
  .advanced-filters,
  .cart-checkout-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-statusbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .active-filter-chips {
    justify-content: flex-start;
  }

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

  .promo-banner,
  .product-reviews .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-banner .primary-link {
    width: 100%;
    justify-content: center;
  }

  .cart-page {
    width: min(calc(100% - 28px), 760px);
    max-width: calc(100vw - 28px);
  }

  .cart-page-head {
    max-width: calc(100vw - 28px);
  }

  .cart-page-head h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1;
  }

  .cart-page-head p {
    width: min(100%, 330px);
    max-width: min(calc(100vw - 42px), 330px);
    font-size: 16px;
  }

  .cart-page-panel,
  .cart-page-summary,
  .checkout-page-form {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .content-hero h1,
  .category-hero h1,
  .product-main h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  .cart-page-summary {
    position: static;
  }

  .product-gallery {
    position: static;
  }

  .product-main {
    order: -1;
  }

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

  .occasion-rail article {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    gap: 8px;
    grid-column: 2;
    justify-self: end;
  }

  .mobile-menu {
    grid-column: 3;
    justify-self: end;
  }

  .brand {
    font-size: 21px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .cart-button {
    width: 42px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .cart-button small {
    display: none;
  }

  .cart-button span {
    position: absolute;
    right: -2px;
    top: -7px;
    transform: none;
  }

  .cart-page-head h1 {
    font-size: clamp(30px, 8vw, 34px);
  }

  .promo-row {
    grid-template-columns: 1fr;
  }

  .recommendation-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .checkout-steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .checkout-steps button {
    flex: 0 0 155px;
    scroll-snap-align: start;
  }

  .checkout-step-head h2 {
    font-size: 24px;
  }

  .checkout-step-actions {
    flex-direction: column-reverse;
  }

  .checkout-step-actions button {
    width: 100%;
  }

  .recommendation-row button {
    grid-column: 1 / -1;
  }

  .totals p {
    gap: 10px;
  }

  .secure-note {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.45;
  }

  .tracking-steps,
  .tracking-nps-scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .payment-summary div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .payment-summary strong {
    max-width: 100%;
    text-align: left;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-vase {
    height: 78%;
  }

  .hero-bouquet {
    width: 54%;
  }

  .product-cart-dock {
    position: static;
    width: min(calc(100% - 28px), 760px);
    margin: 18px auto 26px;
    transform: none;
  }

.product-cart-dock .primary-link {
    width: auto;
  }
}

.courier-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.courier-proof-strip img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(55, 66, 58, 0.14);
  border-radius: 8px;
  object-fit: cover;
  background: #f7f2ec;
}

.courier-proof-upload {
  cursor: pointer;
}

/* Флорвояж OS redesign */
:root {
  --ink: #111c18;
  --muted: #64716c;
  --line: rgba(24, 44, 37, 0.13);
  --paper: #f7f8f4;
  --sage: #d7eadf;
  --sage-2: #edf6ef;
  --leaf: #226b4d;
  --leaf-dark: #123d2e;
  --berry: #9b1f4f;
  --blush: #f4d7dc;
  --gold: #c79046;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-solid: #ffffff;
  --shadow: 0 22px 56px rgba(17, 32, 27, 0.12);
  --shadow-strong: 0 30px 90px rgba(13, 25, 22, 0.22);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
  background:
    linear-gradient(180deg, #fbfcf8 0%, #f3f6ef 44%, #f8f4f5 100%);
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 860;
  letter-spacing: 0;
}

.site-header {
  top: 12px;
  z-index: 30;
  width: min(1440px, calc(100% - 28px));
  padding: 10px 12px;
  border: 1px solid rgba(24, 44, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(17, 32, 27, 0.08);
}

.brand,
.footer-brand {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.brand-mark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent),
    var(--berry);
  box-shadow: 0 10px 26px rgba(155, 31, 79, 0.24);
}

.nav-links {
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(24, 44, 37, 0.08);
  border-radius: 8px;
  background: rgba(245, 249, 245, 0.72);
}

.nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--leaf-dark);
  background: #fff;
}

.icon-button,
.mobile-menu summary {
  border: 1px solid rgba(24, 44, 37, 0.1);
  border-radius: 8px;
  background: rgba(237, 246, 239, 0.92);
}

.cart-button,
.primary-link,
.secondary-link,
.checkout-button,
.panel-close,
.filters button,
.filters a,
.collection-strip button {
  border-radius: 8px;
}

.cart-button,
.primary-link,
.checkout-button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    var(--leaf-dark);
  box-shadow: 0 18px 38px rgba(18, 61, 46, 0.2);
}

.primary-link {
  min-height: 50px;
  padding: 0 22px;
}

.secondary-link {
  border-color: rgba(18, 61, 46, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(17, 32, 27, 0.07);
}

.hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 1fr);
  width: min(1480px, calc(100% - 28px));
  min-height: min(760px, calc(100svh - 138px));
  margin-top: 16px;
  overflow: hidden;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #101d18;
  box-shadow: var(--shadow-strong);
}

.hero::before {
  inset: 0;
  z-index: -1;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.86) 0%, rgba(7, 18, 15, 0.58) 46%, rgba(7, 18, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 18, 15, 0.18), rgba(7, 18, 15, 0.72));
}

.hero-copy {
  z-index: 2;
  max-width: 760px;
  padding: 0;
  color: #fffaf2;
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(44px, 8vw, 108px);
  line-height: 0.9;
}

.hero-copy p {
  max-width: 590px;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  margin-top: 30px;
}

.hero-actions .secondary-link {
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 0;
}

.hero-media::before {
  display: none;
}

.hero-vase {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.04) contrast(1.03);
}

.hero-bouquet {
  right: clamp(18px, 5vw, 78px);
  bottom: clamp(18px, 5vw, 72px);
  width: min(300px, 28vw);
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.trust-row {
  max-width: 780px;
  margin-top: 38px;
}

.trust-row div {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fffaf2;
  backdrop-filter: blur(14px);
}

.trust-row svg,
.trust-row small {
  color: rgba(255, 250, 242, 0.72);
}

.catalog-section,
.delivery-section,
.occasions-section,
.reviews-section,
.faq-section {
  width: min(1440px, calc(100% - 28px));
  padding: clamp(58px, 7vw, 92px) 0;
}

.promo-banner,
.catalog-statusbar,
.advanced-filters,
.cart-panel,
.payment-card,
.tracking-card,
.account-card,
.product-fit,
.same-recipient,
.faq-grid article,
.delivery-controls,
.delivery-map,
.product-card,
.product-gallery img,
.product-cart-dock {
  border-color: rgba(24, 44, 37, 0.12);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(17, 32, 27, 0.08);
}

.promo-banner {
  background:
    linear-gradient(135deg, rgba(237, 246, 239, 0.96), rgba(255, 245, 248, 0.94));
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-title h2,
.delivery-section h2,
.occasions-section h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 68px);
  letter-spacing: 0;
}

.catalog-tools,
.advanced-filters,
.catalog-statusbar {
  backdrop-filter: blur(16px);
}

.search-field input,
.sort-field select,
.advanced-filters input,
.advanced-filters select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.payment-card input,
.account-search input,
.tracking-nps textarea {
  border-color: rgba(24, 44, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.filters button,
.filters a,
.collection-strip button,
.active-filter-chips button,
.active-filter-chips span {
  border: 1px solid rgba(24, 44, 37, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.filters button.active,
.filters a.active,
.collection-strip button.active {
  background: var(--leaf-dark);
  color: #fffaf2;
}

.product-grid {
  gap: 16px;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(18, 61, 46, 0.24);
  box-shadow: 0 24px 64px rgba(17, 32, 27, 0.14);
  transform: translateY(-5px);
}

.product-card img {
  aspect-ratio: 1.02;
}

.product-info {
  gap: 12px;
  padding: 18px;
}

.product-info h3 {
  font-size: 19px;
}

.price,
.product-price-line strong {
  color: var(--berry);
}

.product-card button,
.favorite-button {
  border-radius: 8px;
}

.product-card-actions button[data-buy-now] {
  border-radius: 8px;
}

.cart-page,
.product-page,
.tracking-page {
  width: min(1240px, calc(100% - 28px));
}

.cart-page-head h1,
.product-main h1,
.tracking-card h1,
.payment-card h1,
.account-card h1 {
  letter-spacing: 0;
}

.checkout-steps {
  border: 1px solid rgba(24, 44, 37, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px;
}

.checkout-steps button {
  border-radius: 8px;
}

.checkout-step-panel {
  border-radius: 8px;
}

.product-detail {
  gap: clamp(24px, 5vw, 56px);
}

.product-gallery img {
  box-shadow: var(--shadow);
}

.product-gallery-thumbs button,
.product-gallery-thumbs img {
  border-radius: 8px;
}

.tracking-nps,
.tracking-nps-done {
  border-radius: 8px;
}

.tracking-nps-scale button {
  border-radius: 8px;
}

.toast {
  border-radius: 8px;
  background: rgba(18, 61, 46, 0.94);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 58px 20px 34px;
  }

  .hero-bouquet {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 16px), 1440px);
  }

  .hero {
    width: min(calc(100% - 16px), 1440px);
    margin-top: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-vase {
    opacity: 0.72;
  }

  .catalog-section,
  .delivery-section,
  .occasions-section,
  .reviews-section,
  .faq-section,
  .cart-page,
  .product-page,
  .tracking-page {
    width: min(calc(100% - 16px), 760px);
  }
}

/* Флорвояж AI concierge */
.hero {
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0), rgba(237, 246, 239, 0.86));
}

.hero-actions {
  align-items: center;
  flex-wrap: wrap;
}

.ai-concierge {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 112px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  width: min(1380px, calc(100% - 32px));
  margin: clamp(22px, 4vw, 54px) auto;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(210, 237, 224, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 24, 20, 0.98), rgba(24, 50, 39, 0.96) 58%, rgba(71, 31, 52, 0.92)),
    url("https://images.unsplash.com/photo-1470162656305-6f429ba817bf?auto=format&fit=crop&w=1500&q=82") center/cover;
  background-blend-mode: multiply;
  box-shadow: 0 34px 90px rgba(13, 24, 20, 0.26);
  color: #fffaf2;
}

.ai-concierge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 244, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 72%);
}

.ai-concierge-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 100%;
}

.ai-concierge-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fffaf2;
  font-size: clamp(36px, 5.2vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.ai-concierge-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.ai-concierge-summary {
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.86);
  font-weight: 850;
}

.ai-concierge-panel {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.14);
  backdrop-filter: blur(18px);
}

.concierge-step {
  display: grid;
  gap: 9px;
}

.concierge-step > span {
  color: rgba(255, 250, 242, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.concierge-options button,
.concierge-actions button,
.concierge-result-bottom button {
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  font-family: inherit;
  font-weight: 850;
  cursor: pointer;
}

.concierge-options button {
  min-height: 42px;
  padding: 0 13px;
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.8);
}

.concierge-options button.active {
  border-color: rgba(255, 250, 242, 0.62);
  background: #fffaf2;
  color: #13251f;
}

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.concierge-actions .primary-link,
.concierge-actions .secondary-link {
  min-height: 48px;
}

.concierge-actions .primary-link {
  border-color: rgba(255, 250, 242, 0.72);
  background: #fffaf2;
  color: #13251f;
}

.concierge-actions .secondary-link {
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
}

.ai-concierge-results {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.concierge-result {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  min-height: 166px;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.12);
}

.concierge-result img {
  width: 112px;
  height: 100%;
  min-height: 140px;
  border-radius: 8px;
  object-fit: cover;
}

.concierge-result > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.concierge-rank {
  color: rgba(255, 250, 242, 0.42);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.concierge-result h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.concierge-result h3 a {
  color: #fffaf2;
  text-decoration: none;
}

.concierge-result p {
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.concierge-result-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.concierge-result-bottom strong {
  color: #fffaf2;
  font-size: 18px;
}

.concierge-result-bottom button {
  min-height: 38px;
  padding: 0 12px;
  background: #fffaf2;
  color: #13251f;
}

.concierge-result-bottom button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

@media (max-width: 1080px) {
  .ai-concierge,
  .ai-concierge-results {
    grid-template-columns: 1fr;
  }

  .ai-concierge-copy {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .ai-concierge {
    width: min(calc(100% - 16px), 760px);
    padding: 18px;
  }

  .concierge-options button {
    flex: 1 1 calc(50% - 8px);
  }

  .concierge-actions .primary-link,
  .concierge-actions .secondary-link {
    width: 100%;
    justify-content: center;
  }

  .concierge-result {
    grid-template-columns: 92px 1fr;
  }

  .concierge-result img {
    width: 92px;
  }
}
