/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Skip-to-content link (appears on keyboard focus) */
.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: var(--z-fixed);
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform var(--transition-fast);
}

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

/* Ensure focus outlines are always visible */
:focus-visible {
  outline: var(--border-width-thick) solid var(--color-accent);
  outline-offset: 3px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* header element establishes its own stacking context so the navbar
   and toggler button are never covered by content in <main> */
header {
  position: relative;
  z-index: 1040;
}

.navbar {
  background-color: #213623; /* explicit fallback */
  background-color: var(--color-primary, #213623);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  position: relative; /* required for z-index to take effect */
  z-index: 1030; /* explicit — ensures navbar sits above any page section */
}

.navbar-brand {
  color: #ffffff !important;
  font-family: var(--font-family-nav);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-normal);
}

.navbar-brand img {
  display: block;
  height: 70px;
  width: auto;
}

.navbar-brand:hover {
  color: var(--color-accent-light) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-family-nav);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-md);
  letter-spacing: var(--letter-spacing-normal);
  padding-left: var(--space-4) !important;
  padding-right: var(--space-4) !important;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.nav-link.active {
  font-weight: var(--font-weight-bold);
}

.navbar-toggler {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary,
.btn-secondary {
  font-family: var(--font-family-nav);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  --bs-btn-bg: var(--color-btn-primary, --color-btn-primary);
  --bs-btn-border-color: var(--color-btn-primary, --color-btn-primary);
  --bs-btn-hover-bg: var(--color-btn-primary-dark --color-btn-primary-dark);
  --bs-btn-hover-border-color: var(
    --color-btn-primary-dark --color-btn-primary-dark
  );
  --bs-btn-active-bg: var(--color-btn-primary-dark --color-btn-primary-dark);
  background-color: var(--color-btn-primary);
  border-color: var(--color-btn-primary);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-8);
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
  background-color: var(--color-btn-primary-dark) !important;
  border-color: var(--color-btn-primary-dark) !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-secondary {
  background-color: #ffffff;
  border-color: var(--color-btn-primary);
  color: var(--color-btn-primary);
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-8);
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:active {
  background-color: var(--color-btn-primary-light) !important;
  border-color: var(--color-btn-primary-light) !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control-40 {
  max-width: 40%;
}

.form-control-75 {
  max-width: 75%;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

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

.card-title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.card-header {
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0 !important;
}

.card-header,
.card.card-brand,
.section-padding .card .card-body {
  background-color: #ffffff;
}

.card-brand .card-body {
  height: 335px;
}

.card-brand-main .card-body {
  height: 396px;
}

.card-brand-main.card-gm .card-body {
  height: 402px;
}

.card-footer {
  border: none !important;
}

.product-description {
  min-height: 75px;
}

.italic-green {
  font-family: var(--font-family-nav);
  font-size: var(--font-size-sm);
  color: var(--color-baccto-text);
  font-style: italic;
  min-height: 48px;
}

.italic-green strong {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
}
.check-list > div {
  line-height: 28px;
}
.check-list i {
  margin-right: var(--space-3);
  color: var(--color-baccto-text);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: #213623; /* explicit fallback */
  background-color: var(--color-primary, #213623);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-sm);
  padding: var(--space-5) auto;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* ==========================================================================
   SECTION UTILITIES
   ========================================================================== */

.section-wrapper {
  display: flex;
  flex-direction: column;
}

.section-alt {
  background-color: var(--color-bg-section-alt);
}

.section-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.section-primary h1,
.section-primary h2,
.section-primary h3,
.section-primary h4,
.section-primary h5,
.section-primary h6 {
  color: #ffffff;
}

.section-padding,
.section-brands {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.section-padding-sm {
  padding-top: var(--section-padding-y-sm);
  padding-bottom: var(--section-padding-y-sm);
  padding-left: var(--section-padding-x-sm);
  padding-right: var(--section-padding-x-sm);
}

.section-brands {
  position: relative; /* required for z-index to take effect */
  z-index: 2;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

.text-primary-brand {
  color: var(--color-primary) !important;
}
.text-secondary-brand {
  color: var(--color-secondary) !important;
}
.text-accent {
  color: var(--color-accent) !important;
}
.text-muted {
  color: var(--color-neutral-500) !important;
}

.display-heading {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.eyebrow {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
}

.bg-gm-primary {
  background-color: var(--color-btn-primary) !important;
}

.bg-baccto-primary {
  background-color: var(--color-baccto-primary) !important;
}

.baccto-logo,
.gm-logo {
  padding: 10px 0 !important;
}

/* ==========================================================================
   HOME SECTION (Home page)
   ========================================================================== */

.home-section,
.baccto-section,
.gm-section,
.general-section {
  position: relative;
  overflow: hidden;
  min-height: 968px;
  display: flex;
  align-items: center;
}

.home-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-content {
  position: relative;
  z-index: var(--z-raised);
  padding-top: 134px;
}

.home-content .about-btns {
  margin-top: 10px;
}

.home-heading {
  font-family: var(--font-family-heading);
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: #ffffff;
}

.home-lead {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  max-width: 560px;
  margin-top: var(--space-4);
}

.home-section .eyebrow {
  color: var(--color-accent-light);
}

/* Outline light button (home only) */
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* ==========================================================================
   STAT CARDS (About section)
   ========================================================================== */

.stat-card {
  background-color: var(--color-primary-subtle);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-plus {
  font-size: var(--font-size-xl);
  vertical-align: super;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* ==========================================================================
   PRODUCT CARDS (Products section)
   ========================================================================== */

.product-card {
  background-color: var(--color-neutral-50);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.product-card-body {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  height: 100%;
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.product-card-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.product-card-text {
  color: var(--color-neutral-700);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-5);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  flex-grow: 1;
}

.product-features li {
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-700);
  font-size: var(--font-size-sm);
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* ==========================================================================
   WHY-US CARDS
   ========================================================================== */

.why-card {
  background-color: var(--color-neutral-50);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: box-shadow var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: var(--space-3);
}

/* ==========================================================================
   CTA SECTION (Home page bottom banner)
   ========================================================================== */

.cta-section {
  background-color: #213623; /* explicit fallback */
  background-color: var(--color-primary, #213623);
  color: #ffffff;
}

.cta-heading {
  font-family: var(--font-family-heading);
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
  font-weight: var(--font-weight-extrabold);
  color: #ffffff;
}

.cta-lead {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

/* Amber accent button (CTA) */
.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  font-weight: var(--font-weight-bold);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   HOME REGISTRATION MARK (superscript ® beside brand names)
   ========================================================================== */

.home-reg {
  font-size: 0.45em;
  font-weight: var(--font-weight-regular);
  vertical-align: super;
  line-height: 0;
  margin-left: 0.05em;
  opacity: 0.8;
}

.intro-text {
  font-family: var(--font-family-lato);
  font-size: 1.5625rem; /* 25px */
  line-height: 2.25rem; /* 36px */
}

.body-text {
  font-family: var(--font-family-lato);
  font-size: 1.1875rem; /* 19px */
  line-height: 1.75rem; /* 28px */
  color: var(--color-neutral-700);
}

/* ==========================================================================
   BACCTO STAT CARDS (Brand Story section)
   ========================================================================== */

.baccto-stat-card {
  background-color: var(--color-primary-subtle);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.baccto-stat-number {
  display: block;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.baccto-stat-plus {
  font-size: var(--font-size-xl);
  vertical-align: super;
  line-height: 0;
}

.baccto-stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* ==========================================================================
   BACCTO FEATURES LIST (Brand Story section)
   ========================================================================== */

.baccto-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.baccto-features-list li {
  padding-left: var(--space-6);
  position: relative;
  margin-bottom: var(--space-3);
  color: var(--color-neutral-700);
  font-size: var(--font-size-base);
}

.baccto-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* ==========================================================================
   BACCTO PRODUCT CARDS (Product Grid section)
   ========================================================================== */

.baccto-product-card {
  background-color: var(--color-neutral-50);
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

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

/* Colored placeholder band at card top (replaced by real image when available) */
.baccto-product-img-wrap {
  height: 160px;
  background-color: var(--product-color, var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.baccto-product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.baccto-product-img-placeholder span {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-tight);
}

/* When a real product image is dropped in, switch img-wrap to an image host */
.baccto-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: var(--space-4);
}

.baccto-product-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.baccto-product-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.baccto-product-text {
  color: var(--color-neutral-700);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.baccto-product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: var(--border-width) solid var(--color-border-light);
  padding-top: var(--space-4);
}

.baccto-product-specs li {
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
  color: var(--color-neutral-500);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
}

.baccto-product-specs li:last-child {
  margin-bottom: 0;
}

.baccto-product-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}

/* ==========================================================================
   TOP NAVBAR BAR — "Nature and Science in Balance" / Find a Dealer
   ========================================================================== */

.navbar-topbar {
  background-color: #213623; /* explicit fallback */
  background-color: var(--color-primary, #213623);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-family-lato);
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-wide);
  padding-top: var(--space-1);
}

.navbar-topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  font-size: var(--font-size-base);
  transition: color var(--transition-fast);
}

.navbar-topbar a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   BRAND CARDS (Home page — Garden Magic & BACCTO)
   ========================================================================== */

.brand-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
  background-color: var(--color-neutral-900);
  display: flex;
  flex-direction: column;
}

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

.brand-card-img {
  margin-top: var(--space-4);
  height: 280px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transition: transform var(--transition-slow);
}

.brand-card:hover .brand-card-img {
  transform: scale(1.04);
}

.brand-card-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.brand-card-body {
  padding: var(--space-6) var(--space-8);
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-logo {
  width: auto;
  margin-top: var(--space-0);
  margin-bottom: var(--space-0);
  object-fit: contain;
  object-position: left center;
}

.brand-card-title,
.brand-card-title-lg {
  font-family: var(--font-family-heading);
  font-size: 33px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.brand-card-title-lg {
  font-size: 40px;
}

.brand-card-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-3);
}

.brand-card-text {
  color: var(--color-neutral-700);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
  margin-bottom: var(--space-5);
}

/* ==========================================================================
   "LET'S GET GROWING" — full-bleed photo section with dealer CTA
   ========================================================================== */

.grow-top-section,
.grow-section,
.bottom-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  color: #ffffff;
}

.grow-top-section {
  margin-top: -185px; /* slides up into .section-brands */
  z-index: 1;
}

.grow-top-section .grow-content {
  padding-top: 260px;
  z-index: var(--z-raised);
  position: relative;
}

.grow-section {
  margin-top: -90px; /* transparent top overlaps grow-top-section by ~50px */
  z-index: 2; /* paints on top of grow-top-section */
}

.bottom-section {
  margin-top: 0;
}

.grow-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.grow-content,
.bottom-content {
  position: relative;
  z-index: var(--z-raised);
  padding-top: 270px;
  padding-bottom: 0;
}

.bottom-content {
  padding-top: 210px;
}

.grow-content-pb {
  padding-bottom: 250px;
}

.grow-heading {
  font-family: var(--font-family-heading);
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin-bottom: var(--space-4);
}

.grow-lead,
.bottom-lead {
  font-family: var(--font-family-lato);
  font-size: var(--font-size-intro);
  color: rgba(255, 255, 255, 0.88);
  line-height: var(--line-height-intro);
  max-width: 540px;
  margin-bottom: var(--space-8);
}

/* ==========================================================================
   BACCTO CONSUMER PRODUCT PHOTO CARDS
   ========================================================================== */

.baccto-photo-card {
  background-color: #ffffff;
  border: var(--border-width) solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.baccto-photo-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.baccto-photo-img-wrap {
  background-color: var(--color-neutral-50);
  overflow: hidden;
  flex-shrink: 0;
}

.baccto-photo-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: var(--space-4);
  transition: transform var(--transition-slow);
}

.baccto-photo-card:hover .baccto-photo-img {
  transform: scale(1.04);
}

.baccto-photo-body {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.baccto-photo-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.baccto-photo-text {
  color: var(--color-neutral-700);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
  margin-bottom: var(--space-4);
}

.baccto-best-for {
  background-color: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-primary-dark);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
}

.baccto-best-for strong {
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-1);
  color: var(--color-primary);
}

/* ==========================================================================
   WHY BACCTO — checklist aside
   ========================================================================== */

.why-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: var(--border-width) solid var(--color-border-light);
  color: var(--color-neutral-700);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
}

.why-checklist li:last-child {
  border-bottom: none;
}

.why-checklist li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 6.5 11.5 13 4.5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ==========================================================================
   SITEMAP PAGE
   ========================================================================== */

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sitemap-list > li > a {
  font-family: var(--font-family-nav);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-md);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.sitemap-list > li > a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.sitemap-sub {
  list-style: none;
  padding-left: var(--space-6);
  margin-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.sitemap-sub a {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.sitemap-sub a:hover {
  color: var(--color-primary);
  text-decoration: underline;
  flex-shrink: 0;
}

a.link,
a.link:visited,
a.link:active {
  color: #ffffff;
  font-family: var(--font-family-lato);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  text-decoration: none;
  text-transform: none;
}

a.link:hover,
a.link:focus-visible,
a.link:focus {
  text-decoration: underline;
}

.list-inline-item {
  margin-right: 2px !important;
}

#baccto-products .check-list div,
#garden-magic-products .check-list div {
  text-indent: -33px;
  padding-left: 28px;
  text-justify: auto;
}

#baccto-products .check-list i,
#garden-magic-products .check-list i {
  text-align: right;
}

.card-body {
  height: auto !important;
}
