/* Plantan v2 P2: candidate-local Route C navigation and bounded indicator cleanup. */

#off-canvas-right.plantan-v2-p2-ready {
  --plantan-touch: 44px;
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1050;
  display: flex !important;
  flex-direction: column;
  width: min(20rem, calc(100vw - 3rem));
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  background: var(--plantan-paper, #fbfaf7);
  color: var(--plantan-ink, #17352b);
  box-shadow: -0.75rem 0 2rem rgba(23, 53, 43, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: transform 180ms ease, opacity 180ms ease, visibility 0s linear 180ms;
}

#off-canvas-right.plantan-v2-p2-ready.plantan-v2-p2-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  background: var(--plantan-deep, #1f5c45);
  border-bottom: 3px solid var(--plantan-leaf, #3f7f58);
}

#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header > a {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  min-height: var(--plantan-touch, 2.75rem);
  color: var(--plantan-paper, #fbfaf7);
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header > a::after {
  content: "Plantan";
  font-size: 1.25rem;
}

#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header .js-offcanvas-close {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: var(--plantan-touch, 2.75rem);
  min-width: var(--plantan-touch, 2.75rem);
  height: var(--plantan-touch, 2.75rem);
  min-height: var(--plantan-touch, 2.75rem);
  margin: 0;
  padding: 0;
  border: 2px solid var(--plantan-paper, #fbfaf7);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--plantan-paper, #fbfaf7);
  font-size: 1.8rem;
  line-height: 1;
}

#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header .js-offcanvas-close:hover {
  background: var(--plantan-paper, #fbfaf7);
  color: var(--plantan-deep, #1f5c45);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-nav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--plantan-paper, #fbfaf7);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-panel {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: 100%;
  padding: 0 0.75rem 1.5rem;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-panel[hidden] {
  display: none !important;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-panel-header {
  position: sticky;
  top: 0;
  z-index: 2;
  flex: 0 0 auto;
  margin: 0 -0.75rem;
  padding: 0.75rem 0.75rem 0.5rem;
  background: var(--plantan-paper, #fbfaf7);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-current {
  margin: 0.45rem 0 0;
  color: var(--plantan-ink, #17352b);
  font-size: 1.35rem;
  line-height: 1.2;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-back {
  display: inline-flex;
  align-items: center;
  min-height: var(--plantan-touch, 2.75rem);
  margin: 0;
  padding: 0.5rem 0.65rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: var(--plantan-deep, #1f5c45);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-back:hover {
  background: var(--plantan-soft, #edf5ef);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-back-mark {
  margin-right: 0.45rem;
  font-size: 1.2rem;
  line-height: 1;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-list {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-item {
  border-top: 1px solid var(--plantan-line, #cbdccd);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-item:last-child {
  border-bottom: 1px solid var(--plantan-line, #cbdccd);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--plantan-touch, 2.75rem);
  align-items: stretch;
  min-height: var(--plantan-touch, 2.75rem);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-overview,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-leaf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: var(--plantan-touch, 2.75rem);
  padding: 0.7rem 0.65rem;
  color: var(--plantan-ink, #17352b);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-overview:hover,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-leaf:hover {
  background: var(--plantan-soft, #edf5ef);
  color: var(--plantan-deep, #1f5c45);
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-overview-note {
  margin-top: 0.15rem;
  color: var(--plantan-deep, #1f5c45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-drill {
  display: inline-grid;
  place-items: center;
  width: var(--plantan-touch, 2.75rem);
  min-width: var(--plantan-touch, 2.75rem);
  min-height: var(--plantan-touch, 2.75rem);
  padding: 0;
  border: 0;
  border-left: 1px solid var(--plantan-line, #cbdccd);
  background: var(--plantan-soft, #edf5ef);
  color: var(--plantan-deep, #1f5c45);
  font-size: 1.65rem;
  line-height: 1;
}

#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p2-drill:hover {
  background: var(--plantan-deep, #1f5c45);
  color: var(--plantan-paper, #fbfaf7);
}

#off-canvas-right.plantan-v2-p2-ready :focus-visible,
#triggerButton.plantan-v2-p2-trigger:focus-visible {
  outline: 3px solid var(--plantan-focus, #8a4b08);
  outline-offset: 2px;
}

#triggerButton.plantan-v2-p2-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--plantan-touch, 2.75rem);
  min-width: var(--plantan-touch, 2.75rem);
  height: var(--plantan-touch, 2.75rem);
  min-height: var(--plantan-touch, 2.75rem);
  border-radius: 0.45rem;
}

@media (max-width: 991.98px) {
  #t4-megamenu-mainmenu {
    display: none !important;
  }
}

@media (min-width: 992px) {
  #triggerButton.plantan-v2-p2-trigger,
  #off-canvas-right.plantan-v2-p2-ready {
    display: none !important;
  }

  #t4-megamenu-mainmenu .dropdown-toggle::after {
    display: none !important;
    content: none !important;
  }

  #t4-megamenu-mainmenu .item-caret {
    display: inline-grid;
    width: 0.9rem;
    height: 1rem;
    margin-left: 0.3rem;
    place-items: center;
    color: currentColor;
    font-style: normal;
    line-height: 1;
  }

  #t4-megamenu-mainmenu .item-caret::before {
    border: 0;
    content: "▾";
    font-size: 0.75rem;
  }

  #t4-megamenu-mainmenu .dropdown-menu .item-caret::before {
    content: "›";
    font-size: 1rem;
  }

  #t4-megamenu-mainmenu .dropdown-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #t4-megamenu-mainmenu .dropdown-toggle:not(:has(+ .dropdown-menu .dropdown-item)) .item-caret {
    display: none;
  }

  #t4-megamenu-mainmenu li[data-level="1"] > a .item-caret::before {
    content: "▾";
  }

  #t4-megamenu-mainmenu li[data-level="2"] > a .item-caret::before {
    content: "›";
  }
}

@media (prefers-reduced-motion: reduce) {
  #off-canvas-right.plantan-v2-p2-ready {
    transition: none;
  }
}


/* Plantan v2 P5/P6: real Joomla utility modules rendered in the candidate drawer. */
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities {
  flex: 0 0 auto;
  margin: 0;
  padding: 1rem .75rem 1.5rem;
  border-top: 1px solid var(--plantan-line, #cbdccd);
  background: var(--plantan-soft, #edf5ef);
}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities[hidden] { display: none !important; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .module-inner,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .moduletable,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities form { min-width: 0; margin: 0; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .module-inner + .module-inner,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .moduletable + .moduletable,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities [id^="Mod"] + [id^="Mod"] { margin-top: 1.25rem; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities h3,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities legend {
  margin: 0 0 .65rem; color: var(--plantan-ink, #17352b); font-size: 1.15rem; font-weight: 700; line-height: 1.25;
}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities label { display: block; margin: 0 0 .35rem; color: var(--plantan-ink, #17352b); font-weight: 700; line-height: 1.35; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities input[type="search"],
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities input[type="text"],
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities input[type="password"] {
  display: block; width: 100%; min-height: var(--plantan-touch, 2.75rem); margin: 0 0 .8rem; padding: .6rem .7rem;
  border: 1px solid var(--plantan-line, #cbdccd); border-radius: .45rem; background: #fff; color: var(--plantan-ink, #17352b); font: inherit;
}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities input[type="checkbox"] { width: 1.15rem; height: 1.15rem; margin-inline-end: .45rem; accent-color: var(--plantan-deep, #1f5c45); vertical-align: middle; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities button,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities input[type="submit"] {
  min-height: var(--plantan-touch, 2.75rem); padding: .6rem .9rem; border: 2px solid var(--plantan-deep, #1f5c45); border-radius: .45rem;
  background: var(--plantan-deep, #1f5c45); color: var(--plantan-paper, #fbfaf7); font: inherit; font-weight: 700; line-height: 1.2;
}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities a { color: var(--plantan-deep, #1f5c45); font-weight: 700; text-decoration: underline; text-underline-offset: .16em; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities :is(input, button, a, select, textarea):focus-visible { outline: 3px solid var(--plantan-focus, #8a4b08); outline-offset: 3px; }
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .alert,
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .invalid-feedback {
  display: block; margin: .75rem 0; padding: .75rem; border-left: 4px solid currentColor; border-radius: .3rem; font-weight: 700;
}
@media (max-width: 360px) {
  #off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities { padding-inline: .6rem; }
}

.plantan-v2-skip-link{position:fixed;z-index:2000;top:.5rem;left:.5rem;transform:translateY(-150%);padding:.65rem .85rem;border:2px solid var(--plantan-paper,#fbfaf7);border-radius:.4rem;background:var(--plantan-deep,#1f5c45);color:var(--plantan-paper,#fbfaf7);font-weight:700}.plantan-v2-skip-link:focus{transform:translateY(0);outline:3px solid var(--plantan-focus,#8a4b08);outline-offset:3px}

/* Audit: repair the vendor font's empty U+00F0 only; retain the existing typography. */
@font-face{font-family:louis_george_caferegular;src:local("Arial"),local("Roboto"),local("Helvetica"),local("Liberation Sans");font-style:normal;font-weight:normal;unicode-range:U+00F0}
@font-face{font-family:louis_george_cafebold;src:local("Arial Bold"),local("Roboto Bold"),local("Helvetica Bold"),local("Liberation Sans Bold");font-style:normal;font-weight:normal;unicode-range:U+00F0}
/* Audit: shared vendor close opacity/text colour must not hide the affordance. */
#off-canvas-right.plantan-v2-p2-ready .js-offcanvas-close{opacity:1}
#off-canvas-right.plantan-v2-p2-ready .js-offcanvas-close .c-button__text{color:inherit}
/* Generated T4 .btn.btn-primary uses !important; override only utility button colours. */
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .btn:not(.btn-link){background:var(--plantan-deep)!important;border-color:var(--plantan-deep)!important;color:var(--plantan-paper)}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .btn:not(.btn-link):hover{background:var(--plantan-ink)!important;border-color:var(--plantan-ink)!important}
/* Keep native Login input adornments beside their field at narrow widths. */
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .input-group{flex-wrap:nowrap;align-items:stretch;margin-bottom:.8rem}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .input-group > input{width:1%;min-width:0;flex:1 1 auto;margin-bottom:0}
#off-canvas-right.plantan-v2-p2-ready .plantan-v2-p5-utilities .input-group-text{display:flex;align-items:center}


/* 2026-09-20 owner visual cleanup: candidate-only backdrop and restrained desktop menu surface. */
.plantan-v2-p2-backdrop{position:fixed;inset:0;z-index:1040;background:rgba(23,53,43,.34);cursor:default}
.plantan-v2-p2-backdrop[hidden]{display:none!important}
@media(min-width:992px){#t4-megamenu-mainmenu .dropdown-menu{padding:.4rem 0;background:var(--plantan-paper,#fbfaf7);border:1px solid var(--plantan-line,#cbdccd);border-radius:.35rem;box-shadow:0 .45rem 1rem rgba(23,53,43,.13)}#t4-megamenu-mainmenu .dropdown-menu .dropdown-item{padding:.6rem 1rem;color:var(--plantan-ink,#17352b);font-weight:600;line-height:1.3}#t4-megamenu-mainmenu .dropdown-menu .dropdown-item:hover,#t4-megamenu-mainmenu .dropdown-menu .dropdown-item:focus{background:var(--plantan-soft,#edf5ef);color:var(--plantan-deep,#1f5c45)}#t4-megamenu-mainmenu .nav-link{font-weight:600;letter-spacing:.01em}}
/* Plantan v2 palette consistency follow-up: off-canvas header companion treatment. */
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header {
  background: var(--plantan-header, #b7d58b);
  color: var(--plantan-ink, #17352b);
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header > a {
  color: var(--plantan-ink, #17352b);
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header .js-offcanvas-close {
  border-color: var(--plantan-ink, #17352b);
  color: var(--plantan-ink, #17352b);
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header .js-offcanvas-close:hover {
  background: var(--plantan-ink, #17352b);
  color: var(--plantan-header, #b7d58b);
}
/* Palette follow-up cascade fix: last-loaded candidate treatment for footer and pagination. */
#t4-footnav,
#t4-footnav.t4-palette-dark,
#t4-footer,
.t4-footnav,
.t4-footer {
  background: var(--plantan-soft, #edf5ef) !important;
  color: var(--plantan-ink, #17352b) !important;
  border-top: 3px solid var(--plantan-header, #b7d58b) !important;
}
#t4-footnav a,
#t4-footer a,
.t4-footnav a,
.t4-footer a {
  color: var(--plantan-deep, #1f5c45) !important;
}
#t4-mainbody .pagination li.page-item > .page-link {
  color: var(--plantan-deep, #1f5c45) !important;
  background: transparent !important;
  border-color: var(--plantan-line, #cbdccd) !important;
}
#t4-mainbody .pagination li.page-item:hover > .page-link {
  color: var(--plantan-ink, #17352b) !important;
  background: var(--plantan-soft, #edf5ef) !important;
  border-color: var(--plantan-leaf, #3f7f58) !important;
}
#t4-mainbody .pagination li.page-item.active > .page-link,
#t4-mainbody .pagination li.page-item > .page-link[aria-current="true"] {
  color: var(--plantan-paper, #fbfaf7) !important;
  background: var(--plantan-deep, #1f5c45) !important;
  border-color: var(--plantan-deep, #1f5c45) !important;
}
#t4-mainbody .pagination li.page-item.disabled > .page-link {
  color: #6b7f75 !important;
  background: var(--plantan-paper, #fbfaf7) !important;
  border-color: var(--plantan-line, #cbdccd) !important;
  opacity: .75;
}
#t4-mainbody .pagination li.page-item > .page-link:focus,
#t4-mainbody .pagination li.page-item > .page-link:focus-visible {
  color: var(--plantan-ink, #17352b) !important;
  background: var(--plantan-soft, #edf5ef) !important;
  border-color: var(--plantan-focus, #8a4b08) !important;
  box-shadow: 0 0 0 .2rem rgba(138, 75, 8, .25) !important;
}

/* 2026-09-20 navigation integrity and off-canvas polish: candidate style 32 only. */
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header{min-height:5rem;padding:.5rem .75rem .45rem 1rem;align-items:flex-end}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a{align-items:flex-end;min-height:4rem}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a::after{content:none!important}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a img{display:block!important;width:8rem!important;height:auto!important;max-width:100%}
#off-canvas-right.plantan-v2-p2-ready [data-p2-panel="root"] .plantan-v2-p2-current{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important;border:0!important}
@media(min-width:992px){#t4-megamenu-mainmenu>.navbar-nav{align-items:stretch}#t4-megamenu-mainmenu>.navbar-nav>.nav-item,#t4-megamenu-mainmenu .dropdown-menu .nav-item{position:relative}#t4-megamenu-mainmenu>.navbar-nav>.nav-item>.dropdown-menu{top:100%;left:0;right:auto;margin:0;min-width:14rem;z-index:1060}#t4-megamenu-mainmenu .dropdown-menu .dropdown-menu{top:0;left:100%;right:auto;margin:0;min-width:14rem;z-index:1061}#t4-megamenu-mainmenu>.navbar-nav>.nav-item>.nav-link{align-items:flex-end}#t4-megamenu-mainmenu li.plantan-v2-desktop-open>.dropdown-menu{display:block}}

/* Off-canvas has two responsive image variants; expose exactly one. */
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a{flex:0 0 8rem;width:8rem}
@media(max-width:991.98px){#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a .logo-img{display:none!important}#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a .logo-img-sm{display:block!important}}
@media(min-width:992px){#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a .logo-img-sm{display:none!important}#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a .logo-img{display:block!important}}


/* 2026-09-20 final mobile/header micro-polish: candidate style 32 only. */
#triggerButton.plantan-v2-p2-trigger{
  width:46px!important;
  min-width:46px!important;
  height:46px!important;
  min-height:46px!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  margin-inline-end:-42px!important;
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header{
  min-height:6rem;
  padding:.6rem .5rem .35rem .9rem;
  align-items:flex-end;
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a{
  flex:0 1 7rem;
  width:7rem;
  min-height:5rem;
  align-items:flex-end;
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a img{
  width:7rem!important;
  height:auto!important;
  aspect-ratio:auto!important;
  object-fit:contain;
}
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header .js-offcanvas-close{
  align-self:flex-end;
  margin-inline-start:auto;
  border:2px solid var(--plantan-ink,#17352b);
  color:var(--plantan-ink,#17352b);
}

/* T4 inherits a 30px logo cap in the drawer; remove that cap rather than flattening the owner-selected mark. */
#off-canvas-right.plantan-v2-p2-ready .t4-off-canvas-header>a img{
  width:6.5rem!important;
  height:auto!important;
  max-height:none!important;
  aspect-ratio:auto!important;
}


/* Repair Package 1: explicit desktop keyboard/pointer disclosure state. */
@media (min-width: 992px) {
  #t4-megamenu-mainmenu[aria-label] li.plantan-v2-desktop-open > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  #t4-megamenu-mainmenu[aria-label] a[aria-expanded="true"] > .item-caret::before {
    transform: rotate(180deg);
  }

  #t4-megamenu-mainmenu[aria-label] .dropdown-menu a:focus-visible {
    outline: 3px solid var(--plantan-focus, #8a4b08);
    outline-offset: -3px;
  }
}
