@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;

  /* Paleta Terrosa (Herbevie Premium) */
  --color-brand: #D96C18;
  /* Laranja Terroso (Official) */
  --color-secondary: #556B2F;
  /* Verde Musgo Profundo */
  --color-accent: #D4AF37;
  /* Dourado */
  --color-terracota: #C65D3B;
  /* Terracota */
  --color-bege: #E8DCC4;
  /* Bege Creme */
  --color-stone: #8B8680;
  /* Cinza Pedra */

  /* Backgrounds */
  --color-white: #FDFBF7;
  /* Creme (off-white) */
  --color-neutral-100: #F5F3EE;
  /* Bege muito claro */

  /* Legacy / Terroir Mappings */
  --color-patagonia: #229971;
  /* Verde Patagônia */
  --color-amazonia: #64C4FF;
  /* Azul Amazônia */

  /* Neutrals (Earthy Tones) */
  --color-neutral-900: #2C2416;
  /* Marrom escuro */
  --color-neutral-800: #3D3426;
  --color-neutral-700: #5A4F3A;
  --color-neutral-500: #8B7E6A;
  --color-neutral-300: #C4BAAA;
  --color-neutral-200: #DED8CC;

  --shadow-soft: 0 20px 60px rgba(44, 36, 22, 0.08);
  --shadow-card: 0 12px 32px rgba(44, 36, 22, 0.06);
  --container-max: 1200px;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--color-white);
  color: var(--color-neutral-900);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-brand);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-neutral-900);
  margin: 0;
}

p {
  margin: 0;
}

main {
  display: block;
  min-height: 60vh;
}

.container-max {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1280px) {
  .container-max {
    padding: 0 2rem;
  }
}

section {
  position: relative;
}

section+section {
  margin-top: 6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(244, 118, 0, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 10px 25px rgba(244, 118, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(244, 118, 0, 0.35);
  color: #fff !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--color-neutral-900);
  border: 1px solid var(--color-neutral-200);
}

.btn-outline:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-ghost {
  background: transparent;
  color: inherit;
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: rgba(16, 16, 16, 0.08);
  color: var(--color-neutral-800);
}

.badge-pill {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  background: rgba(244, 118, 0, 0.1);
  color: var(--color-brand);
}

.text-display-1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.text-display-2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.text-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.text-h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  line-height: 1.25;
}

.text-h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

.text-body-lg {
  font-size: 1.05rem;
  color: var(--color-neutral-700);
}

.text-body {
  font-size: 1rem;
  color: var(--color-neutral-700);
}

.text-body-sm {
  font-size: 0.9rem;
  color: var(--color-neutral-500);
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--color-neutral-500);
  margin-bottom: 0.75rem;
}

.card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.card-soft {
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.06);
  padding: 2rem;
}

.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.bg-neutral-50 {
  background-color: var(--color-neutral-100);
}

.text-neutral-700 {
  color: var(--color-neutral-500);
}

.text-neutral-900 {
  color: var(--color-neutral-900);
}

.text-primary {
  color: var(--color-brand);
}

.bg-primary {
  background: var(--color-brand);
}

.gradient-patagonia {
  background: linear-gradient(145deg, rgba(34, 153, 113, 0.12), rgba(34, 153, 113, 0.04));
  border: 1px solid rgba(34, 153, 113, 0.25);
}

.gradient-amazonia {
  background: linear-gradient(145deg, rgba(100, 196, 255, 0.16), rgba(100, 196, 255, 0.05));
  border: 1px solid rgba(100, 196, 255, 0.25);
}

.gradient-essential {
  background: linear-gradient(145deg, rgba(244, 118, 0, 0.14), rgba(244, 118, 0, 0.05));
  border: 1px solid rgba(244, 118, 0, 0.25);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-neutral-700);
  margin-bottom: 0.55rem;
}

.list-check svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--color-brand);
}

.list-numbered {
  counter-reset: list-numbered;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-numbered li {
  counter-increment: list-numbered;
  position: relative;
  padding-left: 2.25rem;
  color: var(--color-neutral-700);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.list-numbered li::before {
  content: counter(list-numbered, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: 600;
  color: var(--color-brand);
}

.product-card {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 1.75rem;
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: 0 24px 48px rgba(16, 16, 16, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(244, 118, 0, 0.12), rgba(16, 16, 16, 0.08));
  margin-bottom: 1.5rem;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-hero-media {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: var(--shadow-card);
  background: #000;
  display: flex;
  flex-direction: column;
}

.product-hero-media picture,
.product-hero-video {
  width: 100%;
  height: 100%;
  flex: 1;
  display: block;
}

.product-hero-media img,
.product-hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-video-caption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-neutral-600);
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.product-card .price {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-neutral-900);
}

.product-card .line-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 16, 16, 0.08);
}

.product-card .synergy {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-neutral-500);
}

/* Product Image Gallery */

.product-image-gallery {
  position: relative;
}

.product-image-gallery .aspect-square {
  aspect-ratio: 1 / 1;
}

/* Product Video Section */

.product-video-section {
  position: relative;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.trust-badge {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(16, 16, 16, 0.05);
  box-shadow: 0 15px 40px rgba(16, 16, 16, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.07);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(16, 16, 16, 0.06);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

@keyframes bounceSubtle {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -6px);
  }
}

.animate-bounce-subtle {
  animation: bounceSubtle 1.8s ease-in-out infinite;
}

.accordion {
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
}

.accordion+.accordion {
  margin-top: 0.75rem;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-neutral-800);
  position: relative;
  padding-right: 1.75rem;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-brand);
  transition: transform 0.2s ease;
}

.accordion[open] summary::after {
  transform: rotate(-180deg);
}

.accordion-content {
  margin-top: 0.75rem;
  color: var(--color-neutral-600);
}

.accordion:focus-visible {
  outline: 3px solid rgba(244, 118, 0, 0.3);
  outline-offset: 2px;
}

header.sticky {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.82);
}

.hidden {
  display: none !important;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-pill {
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-neutral-700);
  background: #fff;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.filter-pill.is-active {
  background: var(--color-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(244, 118, 0, 0.22);
}

.hb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.hb-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hb-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.hb-header__brand-icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
}

.hb-header__brand-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--color-neutral-900);
}

.hb-header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hb-header__nav-link,
.hb-nav__dropdown-button {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-neutral-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hb-header__nav-link:hover,
.hb-nav__dropdown-button:hover {
  color: var(--color-brand);
}

.hb-nav__dropdown {
  position: relative;
}

.hb-nav__dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hb-nav__dropdown-icon {
  width: 0.85rem;
  height: 0.85rem;
}

.hb-nav__dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.6rem);
  min-width: 11.5rem;
  background: #fff;
  border-radius: 0.9rem;
  border: 1px solid rgba(16, 16, 16, 0.1);
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.3rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hb-nav__dropdown:hover .hb-nav__dropdown-panel,
.hb-nav__dropdown:focus-within .hb-nav__dropdown-panel,
.hb-nav__dropdown-button:focus+.hb-nav__dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hb-nav__dropdown-link,
.hb-nav__dropdown-footer {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  color: var(--color-neutral-700);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.hb-nav__dropdown-link:hover,
.hb-nav__dropdown-footer:hover {
  background: rgba(244, 118, 0, 0.08);
  color: var(--color-brand);
}

.hb-nav__dropdown-footer {
  border-top: 1px solid rgba(16, 16, 16, 0.06);
  margin-top: 0.35rem;
  font-weight: 700;
}

.hb-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hb-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: #fff;
  color: var(--color-neutral-700);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hb-header__cart:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.hb-header__cart svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hb-header__cart-badge {
  position: absolute;
  top: -0.3rem;
  right: -0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.hb-region-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.14);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-neutral-700);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hb-region-toggle:hover,
.hb-region-toggle:focus {
  border-color: var(--color-brand);
  color: var(--color-brand);
  box-shadow: 0 12px 26px rgba(244, 118, 0, 0.18);
}

.hb-region-toggle:focus-visible {
  outline: 3px solid rgba(244, 118, 0, 0.3);
  outline-offset: 2px;
}

.hb-region-toggle__flag {
  font-size: 1.1rem;
}

.hb-region-toggle__label {
  white-space: nowrap;
}

.hb-region-toggle__icon {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
}

.hb-header__mobile-trigger {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid rgba(16, 16, 16, 0.14);
  background: #fff;
  padding: 0.45rem 0.55rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hb-header__mobile-trigger span {
  display: block;
  width: 1.35rem;
  height: 0.12rem;
  background: var(--color-neutral-700);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.hb-header[data-nav-open="true"] .hb-header__mobile-trigger {
  border-color: var(--color-brand);
  box-shadow: 0 12px 26px rgba(244, 118, 0, 0.18);
}

.hb-header__actions-desktop {
  display: inline-flex;
}

.hb-header__nav-mobile-extra {
  display: none;
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .hb-header__inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1rem 1rem;
    gap: 0.75rem;
  }

  .hb-header__mobile-trigger {
    display: inline-flex;
  }

  .hb-header__actions {
    order: 2;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }

  .hb-header__actions-desktop {
    display: none;
  }

  .hb-header__nav {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(16, 16, 16, 0.08);
  }

  .hb-header[data-nav-open="true"] .hb-header__nav {
    display: flex;
  }

  .hb-nav__dropdown {
    width: 100%;
  }

  .hb-nav__dropdown-button {
    width: 100%;
    justify-content: space-between;
  }

  .hb-nav__dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(16, 16, 16, 0.08);
    margin-top: 0.6rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hb-header__nav-link {
    width: 100%;
  }

  .hb-header__nav-mobile-extra {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }
}

.metrics-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(244, 118, 0, 0.08), rgba(255, 255, 255, 0.9));
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(244, 118, 0, 0.14);
}

.metrics-card .value {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-brand);
  margin-bottom: 0.35rem;
}

.metrics-card .label {
  font-size: 0.95rem;
  color: var(--color-neutral-700);
}

.hero-microcopy {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* bloomsync Modal */

.modal-bloomsync {
  width: min(840px, 92vw);
  max-height: calc(100vh - 4rem);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 40px 100px rgba(16, 16, 16, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-bloomsync__header {
  padding: 2rem 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.modal-bloomsync__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-neutral-500);
}

.modal-bloomsync__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 600;
  color: var(--color-neutral-900);
}

.modal-bloomsync__content {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 2.5rem 2.25rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .modal-bloomsync__content {
    grid-template-columns: 1.6fr 1fr;
    align-items: flex-start;
  }
}

.modal-bloomsync__form {
  display: grid;
  gap: 1.25rem;
}

.modal-bloomsync__form .field-pair {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .modal-bloomsync__form .field-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.modal-bloomsync__aside {
  display: grid;
  gap: 1.25rem;
}

.modal-bloomsync__card {
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: var(--color-neutral-100);
}

.modal-bloomsync__footer {
  padding: 1.5rem 2.5rem 2.25rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-top: 1px solid rgba(16, 16, 16, 0.06);
}

.modal-bloomsync__success {
  display: grid;
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .modal-bloomsync__content {
    grid-template-columns: 1fr;
    padding: 1.5rem 2rem 2rem;
  }

  .modal-bloomsync__footer {
    padding: 1.35rem 2rem 1.75rem;
    justify-content: space-between;
  }

  .modal-bloomsync__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .modal-bloomsync {
    width: min(600px, 100vw);
    max-height: calc(100vh - 2rem);
    border-radius: 1.5rem;
  }

  .modal-bloomsync__header {
    padding: 1.5rem 1.75rem 1.25rem;
  }

  .modal-bloomsync__content {
    padding: 1.5rem 1.75rem 1.75rem;
  }

  .modal-bloomsync__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .modal-bloomsync__aside {
    grid-template-columns: 1fr;
  }
}