@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #fffaf6;
  --bg-soft: #fff2f4;
  --bg-warm: #f9ece9;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-tint: #fff7f8;
  --text: #493540;
  --text-soft: #6d5560;
  --text-muted: #927883;
  --line: rgba(123, 79, 95, 0.14);
  --line-strong: rgba(123, 79, 95, 0.22);
  --rose: #da6f9f;
  --rose-deep: #bf4f84;
  --rose-soft: #f7d8e5;
  --taupe: #5a4049;
  --lavender: #f2d7e3;
  --lavender-deep: #92566f;
  --cream: #fbf4ec;
  --shadow: 0 28px 70px rgba(98, 58, 77, 0.12);
  --shadow-soft: 0 18px 40px rgba(98, 58, 77, 0.09);
  --radius-sm: 18px;
  --radius: 26px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 88px;
  --site-header-offset: 124px;
  --font-body: "Inter", sans-serif;
  --font-heading: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(218, 111, 159, 0.18), transparent 32%),
    radial-gradient(circle at right 12%, rgba(248, 223, 233, 0.82), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #fff7f8 52%, #fffaf8 100%);
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.56) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.56) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 84%);
  opacity: 0.35;
}

img {
  display: block;
  max-width: 100%;
}

img.is-protected-image {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

iframe {
  border: 0;
}

main {
  display: block;
  padding-top: var(--site-header-offset);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.25rem, 8vw, 6.5rem) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 243, 246, 0.76), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(247, 216, 229, 0.42), transparent 48%);
}

.section-warm {
  background:
    linear-gradient(180deg, rgba(250, 236, 237, 0.9), rgba(255, 250, 246, 0.92)),
    radial-gradient(circle at top right, rgba(218, 111, 159, 0.12), transparent 28%);
}

.page-hero {
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2.6rem, 5vw, 4rem);
}

.grid-2,
.grid-3,
.hero-layout,
.split-layout,
.cta-band,
.contact-grid,
.story-grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2,
.hero-layout,
.split-layout,
.cta-band,
.contact-grid,
.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-head h2,
.section-head h1,
.hero-copy h1,
.card h3,
.contact-card h3,
.quote-card h3,
.form-card h3,
.cta-panel h3,
.trust-item strong,
.stat-card strong,
.cta-copy h2,
.article-content h2,
.article-content h3,
.article-hero-copy h1,
.page-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.article-hero-copy h1 {
  font-size: clamp(1.875rem, 2.75vw, 3rem);
  margin-bottom: 1.2rem;
  line-height: 0.98;
  text-wrap: pretty;
}

.section-head h2,
.page-title {
  font-size: clamp(1.34375rem, 2.5vw, 2.28125rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
}

.lede,
.hero-copy p,
.section-head p,
.card p,
.article-content p,
.article-content li,
.footer-copy p {
  color: var(--text-soft);
}

.lede {
  max-width: 60ch;
}

.chip-row,
.button-row,
.tag-row,
.meta-row,
.detail-stack,
.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip,
.tag,
.badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 79, 132, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: none;
}

.badge {
  background: rgba(191, 79, 132, 0.12);
  color: var(--rose-deep);
  border: 1px solid rgba(191, 79, 132, 0.14);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag,
.pill {
  background: transparent;
  border-color: rgba(123, 79, 95, 0.12);
  box-shadow: none;
  color: var(--text-soft);
}

.button,
.button-secondary,
.button-small,
.button-ghost,
.nav-cta,
.mobile-bar-link,
.form-submit,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border-radius: 22px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.button,
.nav-cta,
.form-submit,
.mobile-bar-link--primary {
  background: linear-gradient(135deg, #bf4f84, #dc6f9d);
  color: #fff;
  border-color: rgba(191, 79, 132, 0.42);
  box-shadow:
    0 18px 34px rgba(191, 79, 132, 0.24),
    0 2px 0 rgba(255, 255, 255, 0.14) inset;
}

.button-secondary,
.mobile-bar-link--secondary {
  background: linear-gradient(180deg, rgba(255, 251, 252, 0.98), rgba(252, 238, 244, 0.96));
  color: var(--rose-deep);
  border-color: rgba(191, 79, 132, 0.28);
  box-shadow:
    0 16px 30px rgba(98, 58, 77, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.button-small,
.card-actions .button,
.card-actions .button-secondary,
.card-actions .button-ghost,
.browse-group-meta .button {
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  border-radius: 18px;
  font-size: 0.88rem;
}

.button-small {
  background: linear-gradient(180deg, rgba(255, 249, 251, 0.98), rgba(250, 233, 240, 0.96));
  color: var(--rose-deep);
  border-color: rgba(191, 79, 132, 0.24);
  box-shadow: 0 12px 24px rgba(98, 58, 77, 0.09);
}

.button-ghost,
.inline-link {
  background: linear-gradient(180deg, rgba(253, 241, 245, 0.94), rgba(249, 228, 236, 0.92));
  color: var(--taupe);
  border-color: rgba(191, 79, 132, 0.22);
  box-shadow: 0 12px 24px rgba(98, 58, 77, 0.08);
}

.button:hover,
.button-small:hover,
.button-secondary:hover,
.button-ghost:hover,
.nav-cta:hover,
.mobile-bar-link:hover,
.form-submit:hover,
.inline-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(98, 58, 77, 0.14);
}

.button:hover,
.nav-cta:hover,
.form-submit:hover,
.mobile-bar-link--primary:hover {
  background: linear-gradient(135deg, #ac3e72, #cf5d90);
  filter: saturate(1.02);
}

.button-small:hover,
.button-secondary:hover,
.mobile-bar-link--secondary:hover,
.button-ghost:hover,
.inline-link:hover {
  background: linear-gradient(180deg, rgba(252, 236, 243, 0.98), rgba(245, 214, 226, 0.98));
  border-color: rgba(191, 79, 132, 0.4);
  color: #7e3d5d;
}

.button:focus-visible,
.button-secondary:focus-visible,
.button-small:focus-visible,
.button-ghost:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.nav-dropdown-toggle:focus-visible,
.faq-toggle:focus-visible,
.form-submit:focus-visible,
.mobile-bar-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(191, 79, 132, 0.32);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 249, 0.9);
  border-bottom: 1px solid rgba(123, 79, 95, 0.08);
}

.topbar {
  display: flex;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, rgba(248, 224, 233, 0.96), rgba(255, 244, 247, 0.98));
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0 0.4rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 0 1 260px;
  justify-self: start;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.brand-copy .brand-ssm {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}

.lang-toggle--header {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.26rem;
  border: 1px solid rgba(191, 79, 132, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 250, 0.92);
  box-shadow:
    0 10px 24px rgba(191, 79, 132, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  flex: 0 0 auto;
}

.lang-toggle-button {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.46rem 0.62rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lang-toggle-button:hover,
.lang-toggle-button:focus-visible {
  color: var(--rose-deep);
  outline: none;
}

.lang-toggle-button.is-active {
  background: linear-gradient(135deg, rgba(191, 79, 132, 0.18), rgba(218, 111, 159, 0.22));
  color: var(--rose-deep);
  box-shadow:
    0 10px 20px rgba(191, 79, 132, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav-links > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 0.66rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  border: 0;
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links > a:hover,
.nav-dropdown-toggle:hover,
.nav-links > a.is-active,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  background: linear-gradient(135deg, rgba(191, 79, 132, 0.18), rgba(218, 111, 159, 0.22));
  color: var(--rose-deep);
  box-shadow:
    0 10px 24px rgba(191, 79, 132, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.nav-dropdown-icon {
  font-size: 0.72rem;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  width: min(620px, calc(100vw - 2rem));
  padding: 1.1rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 250, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.45rem;
}

.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0.52rem 0.74rem;
  min-height: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(223, 210, 215, 0.24);
  box-shadow: none;
  text-align: left;
}

.nav-dropdown-link strong {
  font-size: 0.8rem;
  line-height: 1.05;
  white-space: nowrap;
}

.nav-dropdown-link.is-active,
.nav-dropdown-link:hover {
  background: linear-gradient(135deg, rgba(191, 79, 132, 0.12), rgba(218, 111, 159, 0.16));
  border-color: rgba(191, 79, 132, 0.22);
  color: var(--rose-deep);
}

.nav-cta {
  min-height: 3.05rem;
  padding: 0.8rem 1.1rem;
  border-radius: 18px;
  white-space: nowrap;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-layout--top {
  align-items: start;
}

.hero-copy,
.hero-collage,
.nav-panel,
.nav-links {
  min-width: 0;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  max-width: 60ch;
  font-size: calc(1.02rem - 2px);
}

.article-hero-copy > p {
  font-size: calc(0.96rem - 2px);
}

.hero-copy h1 {
  max-width: none;
}

.page-hero .hero-copy {
  max-width: 36rem;
}

.page-hero .hero-copy p {
  max-width: 34rem;
}

.page-hero .hero-copy .lede {
  margin-bottom: 0.85rem;
}

.hero-copy .button-row {
  margin: 1.8rem 0 1.45rem;
}

.hero-copy .chip-row {
  margin-top: 1rem;
}

.hero-note-grid,
.trust-grid,
.cards-grid,
.category-grid,
.product-grid,
.blog-grid,
.faq-grid,
.steps-grid,
.metric-grid,
.contact-card-grid,
.highlight-grid {
  display: grid;
  gap: 1rem;
}

.hero-note-grid,
.trust-grid,
.metric-grid,
.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid,
.category-grid,
.product-grid,
.blog-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.hero-card,
.faq-item,
.product-card,
.blog-card,
.category-card,
.contact-card,
.quote-card,
.form-card,
.map-card,
.cta-panel,
.article-callout,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(93, 70, 63, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.hero-card,
.faq-item,
.contact-card,
.quote-card,
.form-card,
.cta-panel,
.article-callout,
.stat-card {
  padding: 1.45rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.94));
}

.hero-collage {
  display: grid;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.84fr);
  grid-template-areas:
    "main side"
    "wide side"
    "badge badge";
  gap: 1rem;
  align-items: stretch;
}

.hero-photo,
.hero-photo-tall,
.hero-photo-wide {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(79, 56, 49, 0.16);
}

.hero-photo img,
.hero-photo-tall img,
.hero-photo-wide img,
.product-card img,
.blog-card img,
.category-card img,
.article-cover img,
.shop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  grid-area: main;
  aspect-ratio: 4 / 3.1;
}

.hero-photo-tall {
  grid-area: side;
  aspect-ratio: 0.84 / 1;
  height: 100%;
}

.hero-photo-wide {
  grid-area: wide;
  aspect-ratio: 16 / 8.7;
}

.hero-badge {
  position: relative;
  grid-area: badge;
  width: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(191, 79, 132, 0.96), rgba(224, 122, 166, 0.94));
  color: #fff;
  box-shadow: 0 18px 38px rgba(191, 79, 132, 0.2);
}

.hero-badge strong,
.cta-panel h3,
.form-card h3,
.card h3,
.contact-card h3,
.quote-card h3 {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: clamp(1.95rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

body[data-page="home"] .page-hero {
  overflow: clip;
}

body[data-page="home"] .page-hero .container {
  width: min(1200px, calc(100vw - 3rem));
}

body[data-page="home"] .hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

body[data-page="home"] .hero-copy {
  max-width: 36rem;
}

body[data-page="home"] .hero-copy p {
  max-width: 34rem;
}

body[data-page="home"] .hero-copy .lede {
  margin-bottom: 0.85rem;
}

body[data-page="home"] .hero-copy p strong {
  font-weight: 700;
  color: var(--text-strong);
}

body[data-page="home"] .hero-support {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: calc(0.95rem - 2px);
}

body[data-page="home"] .home-hero-media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  margin-left: auto;
}

body[data-page="home"] .home-hero-stage {
  position: relative;
  min-height: 470px;
  padding: 1.05rem 0.6rem 1.45rem 1rem;
  isolation: isolate;
}

body[data-page="home"] .home-hero-bloom,
body[data-page="home"] .home-hero-orbit {
  position: absolute;
  pointer-events: none;
}

body[data-page="home"] .home-hero-stage::before,
body[data-page="home"] .home-hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

body[data-page="home"] .home-hero-stage::before {
  width: 84%;
  height: 80%;
  right: 0.55rem;
  top: 1.05rem;
  border-radius: 42% 58% 38% 62% / 46% 36% 64% 54%;
  background:
    radial-gradient(circle at 36% 42%, rgba(237, 182, 202, 0.58) 0%, rgba(237, 182, 202, 0.2) 40%, transparent 74%),
    linear-gradient(145deg, rgba(255, 249, 251, 0.96), rgba(248, 228, 236, 0.34));
  filter: blur(1.5px);
  opacity: 0.98;
}

body[data-page="home"] .home-hero-stage::after {
  inset: 2.7rem 0.95rem 2rem 2rem;
  border-radius: 42px 48px 58px 34px;
  border: 1px solid rgba(209, 176, 139, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.03));
  transform: rotate(-6deg);
  opacity: 0.78;
}

body[data-page="home"] .home-hero-bloom--left {
  left: 0.7rem;
  bottom: 2rem;
  width: 126px;
  height: 126px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.86) 0 10%, transparent 11%),
    radial-gradient(circle at 20% 42%, rgba(247, 216, 229, 0.76) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 42%, rgba(255, 243, 247, 0.92) 0 18%, transparent 19%),
    radial-gradient(circle at 79% 44%, rgba(240, 197, 215, 0.84) 0 16%, transparent 17%),
    radial-gradient(circle at 33% 76%, rgba(255, 247, 249, 0.9) 0 15%, transparent 16%),
    radial-gradient(circle at 67% 78%, rgba(236, 191, 210, 0.82) 0 15%, transparent 16%);
  filter: blur(0.3px);
  opacity: 0.92;
}

body[data-page="home"] .home-hero-bloom--right {
  top: 1.4rem;
  right: 0.45rem;
  width: 144px;
  height: 144px;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 54% 18%, rgba(250, 227, 236, 0.94) 0 13%, transparent 14%),
    radial-gradient(circle at 76% 34%, rgba(237, 192, 212, 0.84) 0 13%, transparent 14%),
    radial-gradient(circle at 68% 62%, rgba(255, 247, 250, 0.92) 0 14%, transparent 15%),
    radial-gradient(circle at 36% 72%, rgba(244, 207, 223, 0.86) 0 13%, transparent 14%),
    radial-gradient(circle at 16% 56%, rgba(255, 241, 246, 0.9) 0 12%, transparent 13%);
  opacity: 0.78;
  mix-blend-mode: screen;
}

body[data-page="home"] .home-hero-orbit {
  right: 1.8rem;
  bottom: 1.7rem;
  width: 94px;
  height: 94px;
  z-index: 3;
  border-radius: 44px;
  border: 1px solid rgba(212, 181, 148, 0.46);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(16deg);
  opacity: 0.78;
}

body[data-page="home"] .home-hero-collage {
  margin: 0;
  position: relative;
  width: min(100%, 428px);
  margin: 0.55rem 0 0 auto;
  min-height: 440px;
}

body[data-page="home"] .home-hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(140deg, rgba(255, 254, 255, 0.92), rgba(252, 239, 244, 0.58)),
    linear-gradient(180deg, rgba(232, 205, 177, 0.2), rgba(255, 255, 255, 0));
  box-shadow:
    0 26px 44px rgba(98, 58, 77, 0.16),
    0 8px 22px rgba(255, 255, 255, 0.18) inset;
}

body[data-page="home"] .home-hero-card::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(214, 183, 150, 0.38);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

body[data-page="home"] .home-hero-card::after {
  content: "";
  position: absolute;
  inset: 0.4rem;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0.7;
  z-index: 2;
  pointer-events: none;
}

body[data-page="home"] .home-hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.02);
}

body[data-page="home"] .home-hero-card--craft {
  top: 0.45rem;
  left: 0.1rem;
  width: 40%;
  aspect-ratio: 0.94 / 1;
  border-radius: 26px 30px 34px 22px;
  transform: rotate(-8deg);
  z-index: 1;
}

body[data-page="home"] .home-hero-card--bouquet {
  top: 3rem;
  left: 5.4rem;
  width: 46%;
  aspect-ratio: 0.82 / 1.06;
  border-radius: 34px 40px 50px 28px;
  transform: rotate(-4deg);
  z-index: 3;
}

body[data-page="home"] .home-hero-card--decor {
  top: 0.9rem;
  right: 0.2rem;
  width: 41%;
  aspect-ratio: 0.9 / 1.15;
  border-radius: 28px 34px 44px 24px;
  transform: rotate(8deg);
  z-index: 2;
}

body[data-page="home"] .home-hero-card--party {
  right: 1rem;
  bottom: 0.5rem;
  width: 48%;
  aspect-ratio: 1.02 / 0.9;
  border-radius: 30px 26px 42px 24px;
  transform: rotate(5deg);
  z-index: 4;
}

.home-hero-media,
.hero-visual-media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  margin-left: auto;
}

.home-hero-stage,
.hero-visual-stage {
  position: relative;
  min-height: 470px;
  padding: 1.05rem 0.6rem 1.45rem 1rem;
  isolation: isolate;
}

.home-hero-bloom,
.home-hero-orbit,
.hero-visual-bloom,
.hero-visual-orbit {
  position: absolute;
  pointer-events: none;
}

.home-hero-stage::before,
.home-hero-stage::after,
.hero-visual-stage::before,
.hero-visual-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

.home-hero-stage::before,
.hero-visual-stage::before {
  width: 84%;
  height: 80%;
  right: 0.55rem;
  top: 1.05rem;
  border-radius: 42% 58% 38% 62% / 46% 36% 64% 54%;
  background:
    radial-gradient(circle at 36% 42%, rgba(237, 182, 202, 0.58) 0%, rgba(237, 182, 202, 0.2) 40%, transparent 74%),
    linear-gradient(145deg, rgba(255, 249, 251, 0.96), rgba(248, 228, 236, 0.34));
  filter: blur(1.5px);
  opacity: 0.98;
}

.home-hero-stage::after,
.hero-visual-stage::after {
  inset: 2.7rem 0.95rem 2rem 2rem;
  border-radius: 42px 48px 58px 34px;
  border: 1px solid rgba(209, 176, 139, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.03));
  transform: rotate(-6deg);
  opacity: 0.78;
}

.home-hero-bloom--left,
.hero-visual-bloom--left {
  left: 0.7rem;
  bottom: 2rem;
  width: 126px;
  height: 126px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.86) 0 10%, transparent 11%),
    radial-gradient(circle at 20% 42%, rgba(247, 216, 229, 0.76) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 42%, rgba(255, 243, 247, 0.92) 0 18%, transparent 19%),
    radial-gradient(circle at 79% 44%, rgba(240, 197, 215, 0.84) 0 16%, transparent 17%),
    radial-gradient(circle at 33% 76%, rgba(255, 247, 249, 0.9) 0 15%, transparent 16%),
    radial-gradient(circle at 67% 78%, rgba(236, 191, 210, 0.82) 0 15%, transparent 16%);
  filter: blur(0.3px);
  opacity: 0.92;
}

.home-hero-bloom--right,
.hero-visual-bloom--right {
  top: 1.4rem;
  right: 0.45rem;
  width: 144px;
  height: 144px;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 54% 18%, rgba(250, 227, 236, 0.94) 0 13%, transparent 14%),
    radial-gradient(circle at 76% 34%, rgba(237, 192, 212, 0.84) 0 13%, transparent 14%),
    radial-gradient(circle at 68% 62%, rgba(255, 247, 250, 0.92) 0 14%, transparent 15%),
    radial-gradient(circle at 36% 72%, rgba(244, 207, 223, 0.86) 0 13%, transparent 14%),
    radial-gradient(circle at 16% 56%, rgba(255, 241, 246, 0.9) 0 12%, transparent 13%);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.home-hero-orbit,
.hero-visual-orbit {
  right: 1.8rem;
  bottom: 1.7rem;
  width: 94px;
  height: 94px;
  z-index: 3;
  border-radius: 44px;
  border: 1px solid rgba(212, 181, 148, 0.46);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(16deg);
  opacity: 0.78;
}

.home-hero-image-frame,
.hero-visual-image-frame {
  margin: 0;
  position: relative;
  width: min(100%, 408px);
  margin: 0.55rem 0 0 auto;
  padding: 0.42rem;
  overflow: hidden;
  border-radius: 36px 42px 58px 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(140deg, rgba(255, 254, 255, 0.92), rgba(252, 239, 244, 0.58)),
    linear-gradient(180deg, rgba(232, 205, 177, 0.18), rgba(255, 255, 255, 0));
  box-shadow:
    0 30px 56px rgba(98, 58, 77, 0.16),
    0 8px 22px rgba(255, 255, 255, 0.22) inset;
}

.home-hero-image-frame::before,
.hero-visual-image-frame::before {
  content: "";
  position: absolute;
  inset: 0.62rem;
  border-radius: 30px 36px 50px 24px;
  border: 1px solid rgba(214, 183, 150, 0.44);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  z-index: 2;
}

.home-hero-image-frame::after,
.hero-visual-image-frame::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.58rem;
  height: 26%;
  border-radius: 32px 36px 44px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 246, 249, 0.78)),
    radial-gradient(circle at 14% 70%, rgba(255, 255, 255, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle at 28% 34%, rgba(248, 223, 233, 0.86) 0 9%, transparent 10%),
    radial-gradient(circle at 49% 58%, rgba(255, 247, 250, 0.88) 0 8%, transparent 9%),
    radial-gradient(circle at 70% 38%, rgba(239, 194, 213, 0.74) 0 8%, transparent 9%),
    radial-gradient(circle at 84% 68%, rgba(255, 243, 247, 0.88) 0 7%, transparent 8%);
  opacity: 0.76;
  z-index: 2;
}

.home-hero-image-frame img,
.hero-visual-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 28px 34px 50px 24px;
  transform: translate(0.3rem, 0.14rem) scale(1.02);
  filter: drop-shadow(0 22px 34px rgba(129, 82, 100, 0.13));
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

body[data-page="bouquets"] .bouquet-type-help .info-line {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(123, 79, 95, 0.1);
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-collage {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  grid-template-columns: 1fr;
  grid-template-areas:
    "strip"
    "badge";
  gap: 0.75rem;
  align-content: start;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-collage-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(79, 56, 49, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo,
body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo-tall,
body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo-wide {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
  aspect-ratio: 9 / 16;
  height: auto;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo {
  grid-column: auto;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo-tall {
  grid-column: auto;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo-wide {
  grid-column: auto;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo img {
  object-position: center 52%;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo-tall img {
  object-position: center;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-photo-wide img {
  object-position: center 38%;
}

body:is(
  [data-page="custom-order"],
  [data-page="bouquets"],
  [data-page="gifts"],
  [data-page="party-items"],
  [data-page="craft-handmade"],
  [data-page="decorations"],
  [data-page="floristry-supplies"]
) .hero-badge {
  margin-top: 0;
  padding: 1rem 1.1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

body[data-page="home"] .trust-strip-section {
  padding-top: clamp(1.8rem, 3.8vw, 2.8rem);
  padding-bottom: clamp(1.6rem, 3.4vw, 2.5rem);
}

body[data-page="home"] .trust-strip-section .trust-strip {
  margin-top: 0;
}

body[data-page="home"] .trust-strip .trust-item strong {
  font-size: 1.25rem;
}

body[data-page="home"] .trust-strip .trust-item span {
  font-size: 0.78rem;
  line-height: 1.5;
}

.trust-item {
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.trust-item strong,
.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.trust-item span,
.stat-card span,
.contact-meta,
.muted {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.shop-photo {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(93, 70, 63, 0.09);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.category-card,
.product-card,
.blog-card {
  overflow: hidden;
}

.category-card {
  width: 100%;
  min-width: 0;
}

.category-card img,
.blog-card img {
  aspect-ratio: 4 / 3;
}

.product-card img {
  aspect-ratio: 4 / 4.7;
}

.product-card-top {
  display: flex;
  justify-content: flex-start;
  padding: 0.95rem 1rem 0;
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  margin-bottom: 0.65rem;
  font-size: 1.8rem;
}

.card-body p {
  margin: 0 0 1rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.category-card .card-body {
  display: grid;
  gap: 0.35rem;
  height: 100%;
  align-content: center;
  min-width: 0;
  overflow: hidden;
}

.product-card .card-body {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.product-card .card-body h3,
.blog-card .card-body h3,
.category-card .card-body h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-card .card-body p,
.blog-card .card-body p,
.category-card .card-body p {
  margin: 0;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.55;
}

.category-card-link {
  display: grid;
  height: 100%;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.category-card-link img {
  width: 100%;
}

.category-card-media {
  position: relative;
  overflow: hidden;
}

.category-card-find-more {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 252, 0.92);
  border: 1px solid rgba(197, 100, 145, 0.28);
  box-shadow: 0 10px 24px rgba(88, 53, 69, 0.18);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.category-card-find-more:hover,
.category-card-find-more:focus-visible {
  transform: translateY(-2px);
  background: rgba(205, 100, 149, 0.94);
  box-shadow: 0 14px 28px rgba(88, 53, 69, 0.22);
  color: #fff;
}

.category-card-link .card-body,
.category-card > .card-body {
  padding: 1rem 1.2rem 1.05rem;
}

.category-card .card-body h3 {
  overflow-wrap: break-word;
  text-align: center;
}

body[data-page="home"] .category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
}

body[data-page="home"] .category-card {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
}

body[data-page="home"] .category-card .card-body {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  min-height: 108px;
  color: var(--text);
}

body[data-page="home"] .category-card .card-body h3 {
  font-size: 0.88rem;
  line-height: 1.08;
}

body[data-page="home"] .category-card .card-body p {
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-soft);
}

body[data-page="home"] .category-card {
  width: min(100%, 260px);
  margin-inline: auto;
}

body[data-page="home"] .category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .category-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .product-grid {
  justify-items: center;
}

body[data-page="home"] .product-card {
  width: min(100%, 260px);
  margin-inline: auto;
}

body[data-page="home"] .product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.blog-listing-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
}

.blog-listing-thumb {
  width: 88px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(232, 214, 208, 0.6);
  box-shadow: inset 0 0 0 1px rgba(93, 70, 63, 0.08);
}

.blog-listing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-listing-card .card-body {
  display: grid;
  gap: 0.75rem;
  height: 100%;
  padding: 0;
}

.blog-listing-card .card-body h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-listing-card .card-actions {
  margin-top: auto;
}

.price-note {
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.info-stack {
  display: grid;
  gap: 0.85rem;
}

body[data-page="contact"] .contact-store-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.4rem;
  align-items: stretch;
}

body[data-page="contact"] .contact-store-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  align-content: stretch;
  min-width: 0;
  height: 100%;
}

body[data-page="contact"] .contact-store-layout > .form-card,
body[data-page="contact"] .contact-store-layout > .contact-store-panel {
  min-width: 0;
  height: 100%;
}

body[data-page="contact"] .contact-store-panel .shop-photo {
  min-height: 0;
}

body[data-page="contact"] .contact-store-panel .shop-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

body[data-page="contact"] .contact-store-panel .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.45rem;
}

body[data-page="contact"] .contact-store-panel .card h3 {
  margin: 0 0 0.7rem;
}

body[data-page="contact"] .contact-store-panel .card p {
  margin: 0;
  line-height: 1.72;
}

.info-line {
  display: grid;
  gap: 0.2rem;
}

.info-line strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.steps-grid .card {
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-weight: 800;
}

.cta-band {
  align-items: stretch;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(169, 80, 121, 0.98), rgba(220, 120, 162, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-copy p,
.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.95);
}

.form-card form,
.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.field-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-span {
  grid-column: 1 / -1;
}

.form-help,
.form-status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.map-card {
  overflow: hidden;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

body[data-page="home"] .contact-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="contact"] .contact-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .contact-card .contact-meta a {
  text-decoration: none;
}

body[data-page="home"] .contact-card .contact-meta a:hover {
  color: var(--rose-deep);
}

body[data-page="home"] .contact-card .social-icon-links,
body[data-page="contact"] .contact-card .social-icon-links {
  margin-top: 0.15rem;
}

body[data-page="home"] .contact-grid {
  grid-template-columns: 1fr;
}

body[data-page="home"] .contact-location-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body[data-page="home"] .contact-location-media .shop-photo,
body[data-page="home"] .contact-location-media .map-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100%;
}

body[data-page="home"] .contact-location-media .shop-photo {
  overflow: hidden;
}

body[data-page="home"] .map-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: 340px;
  align-self: start;
}

body[data-page="home"] .map-card iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.45rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--text);
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 1.25rem;
  color: var(--rose-deep);
}

.faq-answer {
  display: none;
  padding: 0 1.45rem 1.35rem;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.72fr);
  gap: 1.75rem;
}

.article-cover {
  width: min(100%, 360px);
  justify-self: end;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-cover img {
  aspect-ratio: 4 / 5;
}

.article-content {
  display: grid;
  gap: 1rem;
}

.article-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.article-callout {
  background: var(--surface-tint);
}

.site-footer {
  padding: 2rem 0 4.3rem;
  background:
    linear-gradient(180deg, rgba(186, 95, 138, 0.97), rgba(153, 79, 113, 0.98)),
    radial-gradient(circle at top right, rgba(252, 232, 240, 0.26), transparent 34%);
  color: rgba(255, 255, 255, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.05fr 1.12fr;
  gap: 0.95rem;
}

.footer-block {
  display: grid;
  gap: 0.58rem;
  align-content: start;
}

.footer-copy p,
.footer-list a,
.footer-list li,
.footer-note,
.footer-meta span,
.footer-meta a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  line-height: 1.48;
}

.footer-list {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 0.12rem;
}

.footer-meta {
  display: grid;
  gap: 0.12rem;
}

.social-icon-links {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 79, 132, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-deep);
  box-shadow: 0 10px 20px rgba(98, 58, 77, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 79, 132, 0.3);
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.98), rgba(250, 235, 241, 0.98));
  box-shadow: 0 16px 28px rgba(98, 58, 77, 0.12);
}

.site-footer .social-icon-link {
  width: 2.35rem;
  height: 2.35rem;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.site-footer .social-icon-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  box-shadow: 0 12px 24px rgba(60, 38, 54, 0.12);
}

.footer-meta a:hover,
.footer-list a:hover {
  color: #fff;
}

.footer-meta strong,
.footer-block h3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-meta strong::after,
.footer-block h3::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18));
}

.site-footer .brand-copy strong {
  color: #fff;
  font-size: 0.94rem;
}

.site-footer .brand-copy {
  gap: 0.16rem;
}

.site-footer .brand-copy span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  line-height: 1.4;
}

.footer-copy p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  line-height: 1.52;
}

.footer-cta-card {
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(60, 38, 54, 0.12);
}

.footer-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-cta-card .button-row {
  margin-top: 0.15rem;
}

.footer-cta-card .button,
.footer-cta-card .button-secondary {
  width: fit-content;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.2rem;
  z-index: 45;
}

.floating-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2db66f, #23945a);
  color: #fff;
  box-shadow: 0 22px 38px rgba(35, 148, 90, 0.26);
}

.floating-whatsapp a svg {
  width: 1.4rem;
  height: 1.4rem;
}

.mobile-inquiry-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 44;
  display: none;
  gap: 0.75rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(255, 249, 245, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(93, 70, 63, 0.09);
}

.mobile-bar-link {
  flex: 1 1 0;
}

.browse-hero .hero-copy {
  max-width: 54rem;
}

.browse-hero-inner {
  display: block;
}

.browse-nav-section {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.browse-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}

.browse-browser-section {
  position: relative;
}

.browse-sticky-sentinel {
  height: 1px;
  margin-top: -1px;
}

.browse-sticky-nav-shell {
  position: relative;
  padding: 0 0 1rem;
}

.browse-sticky-nav-frame {
  padding: 0.35rem;
  border-radius: 30px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.browse-sticky-nav-shell.is-fixed {
  min-height: var(--browse-sticky-height, auto);
}

.browse-sticky-nav-shell.is-fixed > .container {
  position: fixed;
  top: calc(var(--site-header-offset, var(--header-height)) + 0.12rem);
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 50;
}

.browse-sticky-nav-shell.is-fixed .browse-sticky-nav-frame {
  border: 1px solid rgba(191, 79, 132, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 251, 252, 0.92), rgba(255, 246, 248, 0.88)),
    radial-gradient(circle at top right, rgba(218, 111, 159, 0.12), transparent 36%);
  box-shadow: 0 18px 36px rgba(98, 58, 77, 0.12);
  backdrop-filter: blur(14px);
}

.browse-quick-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.4rem;
  scrollbar-width: none;
}

.browse-quick-nav::-webkit-scrollbar {
  display: none;
}

.category-page-nav-shell {
  position: relative;
  padding: 1rem 0 1.2rem;
  display: flex;
  justify-content: center;
}

.category-page-nav-shell.is-fixed {
  min-height: var(--category-sticky-height, auto);
}

.category-page-nav-shell.is-fixed > .container {
  position: fixed;
  top: calc(var(--site-header-offset, var(--header-height)) + 0.18rem);
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: min(var(--container), calc(100vw - 2.4rem));
  z-index: 50;
  padding-block: 0.28rem 0.38rem;
}

.category-page-nav-shell.is-fixed .category-page-nav {
  border-radius: 26px;
  border-color: rgba(223, 210, 215, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 253, 253, 0.92), rgba(255, 249, 250, 0.88)),
    radial-gradient(circle at top right, rgba(239, 217, 225, 0.12), transparent 44%);
  box-shadow: 0 14px 28px rgba(98, 58, 77, 0.08);
  backdrop-filter: blur(14px);
}

.category-page-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  width: fit-content;
  max-width: min(100%, calc(100vw - 2.4rem));
  margin-inline: auto;
  padding: 0.62rem 0.68rem;
  border-radius: 26px;
  border: 1px solid rgba(223, 210, 215, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 253, 253, 0.98), rgba(255, 249, 250, 0.94)),
    radial-gradient(circle at top right, rgba(239, 217, 225, 0.14), transparent 44%);
  box-shadow:
    0 14px 26px rgba(98, 58, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.category-page-nav::-webkit-scrollbar {
  display: none;
}

.browse-quick-nav a {
  display: grid;
  gap: 0.15rem;
  flex: 1 1 0;
  min-width: 158px;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(191, 79, 132, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 2.45rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  color: var(--text-soft);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.browse-quick-nav a span {
  font-weight: 800;
}

.category-page-nav a span {
  display: block;
  font-weight: 600;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.browse-quick-nav a small {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.category-page-nav a small {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.browse-quick-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 79, 132, 0.28);
  box-shadow: 0 18px 36px rgba(98, 58, 77, 0.11);
}

.category-page-nav a:hover {
  transform: none;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(98, 58, 77, 0.05);
}

.category-page-nav a.is-active {
  color: var(--rose-deep);
  border-color: rgba(216, 150, 176, 0.18);
  background: linear-gradient(180deg, rgba(255, 243, 248, 1), rgba(252, 232, 240, 0.97));
  box-shadow:
    0 8px 18px rgba(98, 58, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.browse-group {
  padding: clamp(3.4rem, 6vw, 4.8rem) 0;
  border-top: 1px solid rgba(191, 79, 132, 0.08);
}

.browse-group:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255, 243, 246, 0.76), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(247, 216, 229, 0.22), transparent 48%);
}

.browse-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.browse-group-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.7vw, 3.2rem);
  line-height: 0.98;
}

.browse-group-copy .lede {
  max-width: 56ch;
  margin: 0.7rem 0 0;
}

.browse-group-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.75rem;
  align-items: center;
}

.browse-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.browse-product-card {
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(123, 79, 95, 0.09);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.browse-product-card img {
  width: 100%;
  height: clamp(250px, 20vw, 290px);
  object-fit: contain;
  object-position: center;
  padding: 0.25rem 0.45rem 0.2rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(180deg, #fffafb, #fff4f7);
}

.browse-product-card figcaption {
  display: grid;
  gap: 0.58rem;
  padding: 0.75rem 0.85rem 0.85rem;
}

.browse-product-card figcaption p,
.quote-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.browse-product-card .badge {
  width: fit-content;
  padding: 0.42rem 0.68rem;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  background: rgba(191, 79, 132, 0.09);
  color: var(--rose-deep);
  border: 1px solid rgba(191, 79, 132, 0.12);
}

.browse-product-card .button-small {
  min-height: 2.45rem;
  padding: 0.62rem 0.9rem;
  border-radius: 16px;
  font-size: 0.8rem;
  box-shadow: 0 10px 18px rgba(98, 58, 77, 0.08);
}

.browse-product-card .product-card-top {
  padding: 0.85rem 0.85rem 0;
}

.browse-product-card figcaption,
.product-card .card-body {
  align-content: start;
}

.browse-product-card figcaption {
  gap: 0.45rem;
  padding: 0.72rem 0.85rem 0.85rem;
}

.browse-product-card .card-actions,
.product-card .card-actions {
  margin-top: 0;
}

.product-card .badge,
.browse-product-card .badge {
  align-self: start;
}

.browse-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 79, 132, 0.22);
  box-shadow: 0 22px 42px rgba(98, 58, 77, 0.14);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .nav-shell {
    gap: 0.5rem;
  }

  .brand-link {
    flex-basis: 228px;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    padding-inline: 0.56rem;
    font-size: 0.79rem;
  }

  .lang-toggle-button {
    padding-inline: 0.54rem;
  }

  .nav-cta {
    padding-inline: 0.96rem;
  }
}

@media (max-width: 1100px) {
  .cards-grid,
  .category-grid,
  .blog-grid,
  .faq-grid,
  .grid-3,
  .steps-grid,
  .highlight-grid,
  .gallery-grid,
  .browse-gallery,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-cover {
    width: min(100%, 460px);
    justify-self: center;
  }

  .brand-link {
    flex-basis: 250px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy .brand-ssm {
    display: block;
    font-size: 0.58rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    max-width: 760px;
    margin-inline: auto;
  }

  .nav-links > a,
  .nav-dropdown-toggle {
    padding-inline: 0.72rem;
    font-size: 0.84rem;
  }

  body[data-page="home"] .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="contact"] .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .contact-location-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .category-card {
    width: min(100%, 240px);
  }

  body[data-page="home"] .product-card {
    width: min(100%, 240px);
  }

  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-collage {
    grid-template-areas:
      "strip"
      "badge";
  }

  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-photo,
  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-photo-tall,
  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-photo-wide {
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .category-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .category-card {
    width: 100%;
  }

  body[data-page="home"] .product-card {
    width: 100%;
  }

  body[data-page="contact"] .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-layout {
    grid-template-columns: 1fr;
  }

  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .page-hero .hero-copy {
    max-width: 100%;
  }

  body[data-page="home"] .home-hero-media {
    max-width: 720px;
    margin-inline: auto;
    justify-self: center;
  }

  body[data-page="home"] .home-hero-stage {
    min-height: 520px;
    padding: 1.2rem 0.5rem 2rem 1rem;
  }

  .home-hero-media,
  .home-hero-media,
  .hero-visual-media {
    max-width: 720px;
    margin-inline: auto;
    justify-self: center;
  }

  .home-hero-stage,
  .home-hero-stage,
  .hero-visual-stage {
    min-height: 520px;
    padding: 1.2rem 0.5rem 2rem 1rem;
  }

  .page-hero .home-hero-media {
    max-width: 720px;
    margin-inline: auto;
    justify-self: center;
  }

  body[data-page="home"] .home-hero-collage {
    width: min(100%, 470px);
    min-height: 480px;
  }

  .page-hero .home-hero-stage {
    min-height: 520px;
    padding: 1.2rem 0.5rem 2rem 1rem;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 5.7rem;
  }

  .nav-shell {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }

  .brand-link {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: 0;
  }

  .lang-toggle--header {
    grid-column: auto;
    justify-self: auto;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
    margin-right: 0.45rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    order: 3;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: auto;
    right: 0.08rem;
    width: min(14.15rem, calc(100vw - 0.16rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.56rem 0.32rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 250, 0.98);
    box-shadow: var(--shadow);
    overflow: visible;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    gap: 0;
  }

  .nav-links > a,
  .nav-dropdown-toggle,
  .nav-cta {
    justify-content: space-between;
    width: 100%;
    padding: 0.48rem 0.54rem;
    border-radius: 15px;
    white-space: normal;
  }

  .nav-dropdown {
    width: 100%;
    min-width: 0;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 0.1rem;
    padding: 0;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    white-space: normal;
    max-height: min(52vh, 360px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-gutter: stable;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }

  .nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .nav-dropdown-intro {
    padding: 0.3rem 0.2rem 0.7rem;
  }

  .nav-dropdown-intro strong {
    font-size: 0.96rem;
  }

  .nav-dropdown-intro p {
    font-size: 0.88rem;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-dropdown-link {
    gap: 0.22rem;
    padding: 0.46rem 0.5rem;
    border-radius: 12px;
    width: 100%;
    min-width: 0;
  }

  .nav-dropdown-link strong {
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: normal;
  }

  .nav-dropdown-link span {
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-layout,
  .split-layout,
  .grid-2,
  .cta-band,
  .contact-grid,
  .story-grid,
  .hero-note-grid,
  .trust-grid,
  .metric-grid,
  .contact-card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side"
      "wide"
      "badge";
    max-width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .browse-nav-head,
  .browse-group-head {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .browse-sticky-nav-shell.is-fixed > .container {
    top: calc(var(--site-header-offset, var(--header-height)) + 0.08rem);
  }

  .category-page-nav-shell.is-fixed > .container {
    top: calc(var(--site-header-offset, var(--header-height)) + 0.08rem);
  }

  .browse-group-meta {
    justify-content: start;
  }

  .mobile-inquiry-bar {
    display: flex;
  }
}

@media (max-width: 900px) {
  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-collage {
    grid-template-areas:
      "strip"
      "badge";
    max-width: 100%;
  }

  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-collage-strip {
    width: 100%;
  }

  body[data-page="contact"] .contact-store-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body[data-page="contact"] .contact-store-panel {
    gap: 0.9rem;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] [data-mobile-hide-home-cta] {
    display: none;
  }

  body[data-page="home"] [data-mobile-hide-home-contact-whatsapp] {
    display: none;
  }

  body[data-page="bouquets"] .bouquet-type-layout {
    gap: 1rem;
  }

  body[data-page="bouquets"] .bouquet-type-eyebrow {
    align-items: flex-start;
    white-space: normal;
    line-height: 1.35;
  }

  body[data-page="bouquets"] .bouquet-type-eyebrow::before {
    width: 1.65rem;
    margin-top: 0.5rem;
    flex: 0 0 auto;
  }

  body[data-page="bouquets"] .bouquet-type-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(15rem, 84vw);
    grid-template-columns: none;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.15rem 0.15rem 0.55rem;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  body[data-page="bouquets"] .bouquet-type-cards::-webkit-scrollbar {
    display: none;
  }

  body[data-page="bouquets"] .bouquet-type-cards > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  body[data-page="bouquets"] .bouquet-type-help {
    padding: 1.1rem 1rem;
  }

  body[data-page="bouquets"] .bouquet-type-help .info-stack {
    gap: 0.7rem;
  }

  .topbar {
    display: none;
  }

  .container {
    width: min(100vw - 1.1rem, 100%);
  }

  .site-header .container {
    width: min(100vw - 1.1rem, 100%);
  }

  .nav-shell {
    min-height: 4.3rem;
    gap: 0.55rem;
  }

  .brand-link {
    gap: 0.58rem;
    flex: 1 1 auto;
    flex-basis: auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand-copy {
    gap: 0.02rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy span,
  .brand-copy .brand-ssm {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  body[data-page="home"] .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .page-hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  body:is(
    [data-page="custom-order"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  body[data-page="home"] .hero-copy {
    max-width: 100%;
  }

  .page-hero .hero-copy {
    max-width: 100%;
  }

  body[data-page="home"] .home-hero-media {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    justify-self: center;
  }

  .page-hero .home-hero-media {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    justify-self: center;
  }

  .hero-copy h1,
  .article-hero-copy h1 {
    font-size: clamp(1.5625rem, 7.5vw, 2.1875rem);
  }

  .page-title,
  .section-head h2 {
    font-size: clamp(1.25rem, 6.25vw, 1.6875rem);
  }

  .mobile-inquiry-bar {
    gap: 0.55rem;
    padding: 0.58rem 0.72rem calc(0.58rem + env(safe-area-inset-bottom));
  }

  .mobile-bar-link {
    min-height: 2.82rem;
    padding: 0.66rem 0.88rem;
    border-radius: 18px;
    font-size: 0.88rem;
  }

  .mobile-bar-link .button-label {
    font-size: 0.88rem;
  }

  .mobile-bar-link .button-icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .cta-panel h3,
  .form-card h3,
  .card h3,
  .contact-card h3,
  .quote-card h3,
  .trust-item strong,
  .stat-card strong,
  .product-card .card-body h3,
  .blog-card .card-body h3,
  .category-card .card-body h3 {
    font-size: 1.22rem;
    line-height: 1.16;
  }

  body[data-page="home"] .eyebrow {
    gap: 0.45rem;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  body[data-page="home"] .eyebrow::before {
    width: 1.7rem;
  }

  .nav-dropdown-intro strong {
    font-size: 0.92rem;
  }

  .nav-dropdown-intro p {
    font-size: 0.82rem;
  }

  body[data-page="contact"] .contact-store-panel .shop-photo img {
    aspect-ratio: 4 / 3;
  }

  .nav-dropdown-link {
    padding: 0.5rem 0.52rem;
  }

  .nav-dropdown-link strong {
    font-size: 0.68rem;
    line-height: 1;
  }

  .nav-dropdown-link span {
    font-size: 0.78rem;
  }

  .category-grid,
  .product-grid,
  .blog-grid,
  .faq-grid,
  .grid-3,
  .steps-grid,
  .highlight-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .product-card .card-body {
    gap: 0.5rem;
    padding: 0.8rem 0.72rem 0.85rem;
  }

  .product-card-top {
    padding: 0.72rem 0.72rem 0;
  }

  .browse-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem 0.74rem;
  }

  .browse-product-card {
    width: 100%;
    min-width: 0;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(98, 58, 77, 0.1);
  }

  .browse-product-card img {
    height: 162px;
    padding: 0.08rem 0.1rem 0.08rem;
  }

  .browse-product-card .product-card-top {
    padding: 0.62rem 0.62rem 0;
  }

  .browse-product-card figcaption {
    gap: 0.34rem;
    padding: 0.48rem 0.62rem 0.68rem;
  }

  .browse-product-card .button-small {
    min-height: 2.08rem;
    padding: 0.48rem 0.62rem;
    font-size: 0.75rem;
    border-radius: 14px;
  }

  .browse-product-card .badge {
    padding: 0.34rem 0.52rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .trust-grid,
  .trust-strip,
  .cards-grid,
  .faq-grid,
  .metric-grid,
  .contact-card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16rem, 82vw);
    grid-template-columns: none;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.15rem 0.15rem 0.55rem;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .trust-grid::-webkit-scrollbar,
  .trust-strip::-webkit-scrollbar,
  .cards-grid::-webkit-scrollbar,
  .faq-grid::-webkit-scrollbar,
  .metric-grid::-webkit-scrollbar,
  .contact-card-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-grid > *,
  .trust-strip > *,
  .cards-grid > *,
  .faq-grid > *,
  .metric-grid > *,
  .contact-card-grid > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  .trust-grid .trust-item span,
  .trust-strip .trust-item span,
  .metric-grid .stat-card span,
  .cards-grid .card p,
  .cards-grid .quote-card p,
  .faq-grid .card p,
  .contact-card-grid .contact-meta,
  .contact-card-grid .contact-meta a {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  body[data-page="home"] .faq-grid,
  body[data-page="home"] .contact-card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16rem, 84vw);
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.15rem 0.15rem 0.55rem;
    touch-action: pan-x;
  }

  body[data-page="home"] .faq-grid > *,
  body[data-page="home"] .contact-card-grid > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  body[data-page="contact"] .contact-card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(15rem, 80vw);
    grid-template-columns: none;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.15rem 0.15rem 0.55rem;
    touch-action: pan-x;
  }

  body[data-page="contact"] .contact-card-grid > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  .site-footer {
    padding-bottom: 6.2rem;
  }

  .browse-sticky-nav-frame {
    padding: 0.25rem;
    border-radius: 24px;
  }

  .browse-quick-nav a {
    flex: 0 0 158px;
    min-width: 158px;
  }

  .category-page-nav-shell {
    padding: 0.95rem 0 1.35rem;
  }

  .category-page-nav-shell > .container {
    position: relative;
    width: min(calc(100vw - 2rem), var(--container));
  }

  .category-page-nav {
    position: relative;
    z-index: 2;
  }

  .category-page-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.66rem 0.72rem;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.72rem;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    border-radius: 24px;
    border: 1px solid rgba(223, 210, 215, 0.22);
    background:
      linear-gradient(180deg, rgba(255, 253, 253, 0.96), rgba(255, 249, 250, 0.92)),
      radial-gradient(circle at top right, rgba(239, 217, 225, 0.12), transparent 44%);
    box-shadow:
      0 12px 22px rgba(98, 58, 77, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
  }

  .category-page-nav::-webkit-scrollbar {
    display: none;
  }

  .category-page-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 2.35rem;
    padding: 0.56rem 0.98rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: var(--text-soft);
    scroll-snap-align: start;
    transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  }

  .category-page-nav a span {
    display: block;
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    font-weight: 600;
  }

  .category-page-nav a small {
    display: none;
  }

  .category-page-nav a:hover {
    transform: none;
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 14px rgba(98, 58, 77, 0.05);
  }

  .category-page-nav a.is-active {
    transform: none;
    color: var(--rose-deep);
    border-color: rgba(216, 150, 176, 0.18);
    background: linear-gradient(180deg, rgba(255, 243, 248, 1), rgba(252, 232, 240, 0.97));
    box-shadow:
      0 8px 18px rgba(98, 58, 77, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .category-page-nav-shell.is-fixed > .container {
    top: calc(var(--site-header-offset, var(--header-height)) + 0.35rem);
    padding-block: 0.12rem 0.24rem;
    width: min(calc(100vw - 2rem), var(--container));
  }

  .category-page-nav-shell.is-fixed .category-page-nav {
    border-color: rgba(223, 210, 215, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 253, 253, 0.88), rgba(255, 249, 250, 0.84)),
      radial-gradient(circle at top right, rgba(239, 217, 225, 0.1), transparent 44%);
    box-shadow: 0 10px 20px rgba(98, 58, 77, 0.07);
    backdrop-filter: blur(14px);
  }

  body[data-page="home"] .home-hero-media {
    max-width: 100%;
    margin-right: 0;
  }

  .page-hero .home-hero-media {
    max-width: 100%;
    margin-right: 0;
  }

  .page-hero .hero-copy h1 {
    max-width: none;
  }

  body[data-page="home"] .home-hero-stage {
    min-height: 350px;
    padding: 0.2rem 0 0.85rem;
  }

  .page-hero .home-hero-stage {
    min-height: 350px;
    padding: 0.2rem 0 0.85rem;
  }

  body[data-page="home"] .home-hero-collage {
    width: min(100%, 372px);
    min-height: 350px;
    margin-top: 0.3rem;
  }

  body[data-page="home"] .home-hero-bloom--left {
    width: 98px;
    height: 98px;
    left: 0.35rem;
    bottom: 1.25rem;
  }

  .page-hero .home-hero-bloom--left {
    width: 98px;
    height: 98px;
    left: 0.35rem;
    bottom: 1.25rem;
  }

  body[data-page="home"] .home-hero-bloom--right {
    width: 114px;
    height: 114px;
    top: 0.85rem;
    right: 0.15rem;
  }

  .page-hero .home-hero-bloom--right {
    width: 114px;
    height: 114px;
    top: 0.85rem;
    right: 0.15rem;
  }

  body[data-page="home"] .home-hero-orbit {
    display: none;
  }

  .page-hero .home-hero-orbit {
    display: none;
  }

  body[data-page="home"] .home-hero-card {
    padding: 0.26rem;
  }

  body[data-page="home"] .home-hero-card--craft {
    top: 0.1rem;
    left: 0.2rem;
    width: 42%;
  }

  body[data-page="home"] .home-hero-card--bouquet {
    top: 2rem;
    left: 3.75rem;
    width: 47%;
  }

  body[data-page="home"] .home-hero-card--decor {
    top: 0.45rem;
    right: 0;
    width: 39%;
  }

  body[data-page="home"] .home-hero-card--party {
    right: 0.7rem;
    bottom: 0.2rem;
    width: 50%;
  }

  .hero-visual-media {
    max-width: 100%;
    margin-right: 0;
  }

  .hero-visual-stage {
    min-height: 350px;
    padding: 0.2rem 0 0.85rem;
  }

  .home-hero-image-frame,
  .hero-visual-image-frame {
    width: min(100%, 372px);
    margin-top: 0.3rem;
    padding: 0.22rem;
    border-radius: 28px 28px 40px 24px;
  }

  .home-hero-bloom--left,
  .hero-visual-bloom--left {
    width: 98px;
    height: 98px;
    left: 0.35rem;
    bottom: 1.25rem;
  }

  .home-hero-bloom--right,
  .hero-visual-bloom--right {
    width: 114px;
    height: 114px;
    top: 0.85rem;
    right: 0.15rem;
  }

  .home-hero-orbit,
  .hero-visual-orbit {
    display: none;
  }

  .home-hero-image-frame img,
  .hero-visual-image-frame img {
    aspect-ratio: 0.88 / 1;
    transform: translate(0.28rem, 0.14rem) scale(1.04);
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 5.8rem;
  }

  body:is(
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .floating-whatsapp {
    display: none;
  }

  body:is(
    [data-page="home"],
    [data-page="custom-order"],
    [data-page="testimonials"],
    [data-page="faq"],
    [data-page="contact"],
    [data-page="blog"],
    [data-page="bouquets"],
    [data-page="gifts"],
    [data-page="party-items"],
    [data-page="craft-handmade"],
    [data-page="decorations"],
    [data-page="floristry-supplies"]
  ) .page-hero .button-row {
    display: none;
  }

  .brand-link {
    flex-basis: auto;
  }
}
