/* ─────────────────────────────── */
/* 💸 PRICING SECTION STYLING FIXES */
/* ─────────────────────────────── */

/* 🧱 1. Flex layout for pricing columns */
.wp-block-column.is-style-section-3 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

/* 🟢 2. Center and style the pill ("1 DOG", etc.) */
.is-pricing-tier-name {
  display: inline-block !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 auto 0.75em auto !important;
  border-radius: 999px !important;
}

/* 💵 3. Ensure large prices like $104 stay on one line and don’t get clipped */
.is-pricing-tier-price {
  display: inline-block !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 auto 0.25em auto !important;
  max-width: 100% !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-height: 1.1 !important;
  padding-top: 0.1em !important;
}

/* 📆 4. Center and prevent wrapping of WEEKLY / EVERY 2 WEEKS text */
.is-pricing-tier-price + p {
  display: block !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 auto 1em auto !important;
}

/* ───────────────────────────── */
/* 🪜 STEPS SECTION (IMAGE FIXES) */
/* ───────────────────────────── */

/* 5. Responsive steps section: stack columns on tablet/mobile */
@media (max-width: 1024px) {
  .wp-block-columns.alignwide {
    flex-wrap: wrap !important;
  }

  .wp-block-columns.alignwide > .wp-block-column {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}

/* 6. Make step images scale and prevent cutoff */
.wp-block-image img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}
html {
  scroll-behavior: smooth;
}
/* Prevent single-letter wrapping of long heading words like "territory" */
h4.wp-block-heading.alignwide {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

/* Tablet-specific tweak to reduce wrapping pressure */
@media (max-width: 1024px) {
  h4.wp-block-heading.alignwide {
    letter-spacing: 1px !important;
    font-size: 60px !important; /* optional: adjust to fit if wrapping still happens */
  }
}
/* Reduce space after WEEKLY / EVERY 2 WEEKS / EVERY 4 WEEKS text */
.is-pricing-tier-price + p {
  margin-bottom: 0.5em !important;
  line-height: 1.1 !important;
}
/* Normalize "We've marked our Territory" to match other large section headings */
h4.wp-block-heading.alignwide {
  font-size: clamp(2rem, 5vw, 75px) !important;
  letter-spacing: 2px !important;
  line-height: 1.1 !important;
}
h2 {
  font-family: 'Allura', cursive !important;
  font-weight: 400;
}
@media (max-width: 768px) {
  .wp-block-image img {
    width: 100% !important;
    height: auto !important;
  }
}
/* Make Gutenberg button text auto-resize */
.wp-block-button__link {
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 600;
  white-space: nowrap;
}
/* ==== RESET: one horizontal row, no wrapping ==== */

/* Nav fills header width */
header nav.wp-block-navigation { width: 100%; }

/* UL: force single-row flex layout */
.wp-block-navigation__container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;          /* never break to a new line */
  align-items: center;
  justify-content: flex-end;             /* change to center/space-between if you prefer */
  gap: 1rem;                             /* adjust spacing if needed */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LI: never take full width; stay inline */
.wp-block-navigation__container > li {
  display: inline-flex !important;
  flex: 0 0 auto !important;             /* don't grow or shrink into new lines */
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;        /* keep each label on one line */
}

/* A: keep text on one line */
.wp-block-navigation__container a {
  white-space: nowrap !important;
}

/* ---- Undo any previous two-row/login overrides ---- */
.wp-block-navigation__container::before { content: none !important; }
.wp-block-navigation__container > li:last-child {
  position: static !important;
  order: 0 !important;
  flex-basis: auto !important;
  display: inline-flex !important;
  justify-content: initial !important;
  margin: 0 !important;
}
