:root {
  --bg: #f5f8f3;
  --surface: #ffffff;
  --surface-alt: #edf3ea;
  --text: #24312a;
  --muted: #607166;
  --primary: #4a7d4f;
  --primary-dark: #2f5c38;
  --line: #d8e3d6;
  --shadow: 0 20px 50px rgba(39, 66, 45, 0.12);
}

* { box-sizing: border-box; }
body.natura-page {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }

.topbar-module {
  background: linear-gradient(
    90deg,
    #2f5c38 0%,
    #3f6f45 58%,
    #5f8a57 82%,
    #89b27b 100%
  );
  color: #ecf6ec;
  font-size: .92rem;
}
.topbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .65rem 0;
}
.topbar-item { display: flex; align-items: center; justify-content: center; gap: .6rem; text-align: center; }
.topbar-item i { font-size: 1.1rem; color: #89b27b; }
.topbar-text { display: flex; flex-direction: column; gap: .1rem; }
.topbar-text strong { font-size: 1rem; line-height: 1.2; color: #f4fbf4; }
.topbar-text span { font-size: .92rem; line-height: 1.2; color: #d7e9d8; font-weight: 700; }
.topbar-inline-link {
  font-size: .92rem;
  line-height: 1.2;
  color: #e8f6e4;
  font-weight: 700;
  text-decoration: none;
}
.topbar-inline-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.topbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem 1.2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}
.topbar-grid.topbar-grid-3 {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: .8rem 1.4rem;
}
.topbar-col { min-width: 0; width: 100%; display: flex; justify-content: center; }
.topbar-col-left { justify-content: flex-start; text-align: left; }
.topbar-col-center { justify-content: center; text-align: center; }
.topbar-col-right { justify-content: flex-end; text-align: right; }
.topbar-col-left .topbar-item { justify-content: flex-start; text-align: left; }
.topbar-col-center .topbar-item { justify-content: center; text-align: center; }
.topbar-col-right .topbar-item { justify-content: flex-end; text-align: right; }
.topbar-logo-wrap { width: 100%; margin-bottom: .45rem; display: flex; justify-content: center; }
.topbar-logo { max-height: 44px; width: auto; display: block; }
.topbar-link-btn {
  display: inline-block;
  margin-top: .2rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .18rem .6rem;
  font-size: .82rem;
  font-weight: 700;
}
.topbar-contact { margin-left: auto; gap: 1rem; }

.nav-module {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(6px);
  --nav-core-height: 76px;
}
.nav-module .container-fluid.container-xl {
  position: relative;
  min-height: var(--nav-core-height);
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}
.nav-module .navbar-brand {
  position: absolute;
  left: 0;
  top: 12px;
  background: #fff;
  border-radius: 8px;
  padding: .45rem .65rem;
  box-shadow: 0 10px 30px rgba(28, 47, 34, 0.16);
  margin: 0;
  transition: padding .35s ease, transform .35s ease, box-shadow .35s ease, top .35s ease;
  z-index: 2;
}
.nav-module .navbar-collapse {
  margin-left: 360px;
}
.nav-module.nav-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
  box-shadow: 0 10px 28px rgba(31, 56, 36, 0.16);
}
.site-logo {
  height: 122px;
  width: auto;
  transition: height .35s ease, transform .35s ease;
}
.nav-module.nav-scrolled .site-logo,
.nav-module.nav-fixed .site-logo {
  height: 84px;
}
.nav-module.nav-scrolled .navbar-brand,
.nav-module.nav-fixed .navbar-brand {
  padding: .28rem .48rem;
  top: 6px;
  box-shadow: 0 6px 16px rgba(28, 47, 34, 0.14);
}
.navbar-brand span { font-weight: 700; color: var(--primary-dark); }
.navbar-toggler { border-color: var(--line); }
.navbar-toggler-icon { background-image: none; position: relative; width: 24px; height: 2px; background: var(--primary-dark); display: block; }
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--primary-dark);
}
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }

.nav-link { color: var(--text); font-weight: 600; }
.nav-link.active, .nav-link:hover { color: var(--primary-dark); }
.nav-link-highlight {
  color: #fff !important;
  background: linear-gradient(135deg, #4a7d4f 0%, #5f8a57 100%);
  border: 1px solid rgba(47, 92, 56, 0.45);
  border-radius: 9px;
  padding: .46rem .88rem !important;
  margin-left: .35rem;
  box-shadow: 0 10px 20px rgba(47, 92, 56, 0.2);
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
}
.nav-link-highlight .nav-link-icon {
  color: #fff !important;
}
.nav-link-highlight:hover,
.nav-link-highlight:focus,
.nav-link-highlight.active {
  color: #fff !important;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(47, 92, 56, 0.25);
}
.dropdown-item-highlight {
  color: #fff !important;
  background: linear-gradient(135deg, #4a7d4f 0%, #5f8a57 100%);
  border-radius: 8px;
  margin: .2rem .45rem;
}
.dropdown-item-highlight .nav-link-icon {
  color: #fff !important;
}
.dropdown-item-highlight:hover,
.dropdown-item-highlight:focus {
  color: #fff !important;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.nav-link-icon {
  margin-right: .42rem;
  color: #5f8a57;
  font-size: .92em;
}
.nav-module .dropdown-menu {
  border: 1px solid #dce8da;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(29, 58, 38, 0.12);
  padding: .45rem;
  min-width: 14rem;
}
.nav-module .dropdown-item {
  border-radius: 8px;
  padding: .5rem .75rem;
  font-weight: 600;
  color: var(--text);
}
.nav-module .dropdown-item:hover,
.nav-module .dropdown-item:focus {
  background: #eef5ec;
  color: var(--primary-dark);
}
.nav-module .nav-item.dropdown .dropdown-toggle::after {
  margin-left: .45rem;
  vertical-align: .15em;
}
@media (min-width: 992px) {
  .nav-module .nav-item.dropdown:hover > .dropdown-menu,
  .nav-module .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .nav-module .navbar-collapse .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding: .2rem 0 .2rem .7rem;
    margin: .2rem 0 .5rem;
    background: transparent;
  }
  .nav-module .navbar-collapse .dropdown-item {
    padding: .45rem .6rem;
  }
}
.btn-garden {
  background: linear-gradient(135deg, var(--primary), #6a9f63);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: .68rem 1.2rem;
  font-weight: 600;
}

.hero-slider-module {
  position: relative;
  overflow: hidden;
}
.hero-slider-module .hero-carousel,
.hero-slider-module .carousel-inner,
.hero-slider-module .carousel-item {
  overflow: hidden;
}
.hero-image { height: min(78vh, 760px); object-fit: cover; filter: saturate(1.05); }
.hero-slider-module .carousel-indicators {
  top: 14px;
  bottom: auto;
  margin-bottom: 0;
  gap: .45rem;
  z-index: 6;
}
.hero-slider-module .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(2px);
  opacity: 1;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}
.hero-slider-module .carousel-indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.46);
}
.hero-slider-module .carousel-indicators .active {
  background: #3f6f45;
  border-color: rgba(63, 111, 69, 0.9);
  transform: scale(1.03);
}
.hero-control {
  width: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 7;
  transition: transform .28s ease, opacity .2s ease, visibility .2s ease;
}
.hero-control-shell {
  width: 42px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3f6f45;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}
.hero-control-shell i {
  font-size: 1rem;
}
.hero-control-prev {
  left: 0;
  transform: translateX(-110%);
}
.hero-control-next {
  right: 0;
  transform: translateX(110%);
}
.hero-slider-module:hover .hero-control-prev,
.hero-slider-module:focus-within .hero-control-prev {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slider-module:hover .hero-control-next,
.hero-slider-module:focus-within .hero-control-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-control:hover .hero-control-shell {
  filter: brightness(1.08);
}
.carousel-caption {
  text-align: center;
  top: 50%;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
.carousel-caption h1 { font-size: clamp(1.9rem, 4vw, 3.3rem); text-shadow: 0 10px 30px rgba(0,0,0,.35); }
.carousel-caption p { max-width: 640px; font-size: 1.05rem; }
.hero-kicker { letter-spacing: .08em; text-transform: uppercase; font-weight: 700; opacity: .9; }
.hero-fallback {
  min-height: 68vh; background-size: cover; background-position: center;
  display: grid; align-items: end; color: #fff;
}
.hero-fallback .container-xl { padding-bottom: 5rem; }
.hero-caption-panel {
  margin: 0 auto;
  max-width: 860px;
  background: rgba(15, 24, 19, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 1.6rem 1.9rem;
  backdrop-filter: blur(2px);
}
.hero-caption-panel p {
  margin-left: auto;
  margin-right: auto;
}

.teaser-module { margin-top: -84px; position: relative; z-index: 3; }
.teaser-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}
.teaser-card {
  flex: 1 1 260px;
  max-width: 320px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 34px rgba(30, 55, 35, .28);
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.teaser-card-link {
  text-decoration: none;
  color: inherit;
}
.teaser-card::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 42%;
  height: 280%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(16deg);
  transition: left .6s ease;
  pointer-events: none;
}
.teaser-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 46px rgba(20, 38, 24, 0.42);
  filter: saturate(1.08) brightness(1.04);
}
.teaser-card:hover::before {
  left: 130%;
}
.teaser-card h3,
.teaser-card p {
  color: #fff;
}
.teaser-card h3 {
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
}
.teaser-card p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.92);
}
.teaser-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(17, 33, 20, 0.26);
  color: #fff;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  margin-top: -.35rem;
  margin-bottom: .95rem;
}

.module-section { padding: 5.5rem 0; }
.module-section {
  position: relative;
  z-index: 2;
}
.alt-bg { background: var(--surface-alt); }
.section-head p { margin: 0 0 .45rem; color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.section-head h2 { margin: 0 0 2rem; font-size: clamp(1.7rem, 2.5vw, 2.4rem); }

.service-grid, .reference-grid, .news-grid, .team-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card, .reference-card, .news-card, .team-card, .contact-card, .legal-content, .detail-content {
  background: linear-gradient(135deg, #F9FCF8 0%, #ffffff 100%);
  border: 1px solid #dce8da;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(47, 92, 56, .08);
}
.service-card, .reference-card, .news-card { display: flex; flex-direction: column; }
.service-card img, .reference-card img, .news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card div, .reference-card div, .news-card div { padding: 1rem 1rem 1.2rem; }
.service-card h3, .reference-card h3, .news-card h3 { margin: 0 0 .45rem; font-size: 1.1rem; }
.service-card p, .reference-card p, .news-card p { margin: 0; color: var(--muted); }
.text-link { margin-top: .8rem; display: inline-block; color: var(--primary-dark); font-weight: 600; }
.news-card .news-card-body {
  padding: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.news-card-headline-wrap {
  margin: 0 0 .85rem;
  padding: .9rem 1rem .85rem;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    #2f5c38 0%,
    #3f6f45 58%,
    #5f8a57 82%,
    #89b27b 100%
  );
}
.news-card-category {
  display: inline-block;
  margin: 0 0 .35rem;
  color: rgba(255, 255, 255, .9);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.news-card-headline-wrap h3 {
  margin: 0;
  color: #ffffff;
}
.news-card-body p {
  padding: 0 1rem;
}
.news-card-teaser {
  padding: 0 1rem;
  color: var(--muted);
}
.news-card-teaser p {
  margin: 0 0 .65rem;
  padding: 0;
}
.news-card-teaser p:last-child {
  margin-bottom: 0;
}
.news-readmore-btn {
  align-self: flex-end;
  margin-top: auto;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 10px;
  padding: .5rem .85rem;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(47, 92, 56, .22);
}
.news-readmore-btn:hover {
  color: #ffffff;
  filter: brightness(1.08);
}
.service-card .service-card-body,
.reference-card .reference-card-body {
  padding: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.service-card-headline-wrap,
.reference-card-headline-wrap {
  margin: 0 0 .85rem;
  padding: .9rem 1rem .85rem;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    #2f5c38 0%,
    #3f6f45 58%,
    #5f8a57 82%,
    #89b27b 100%
  );
}
.service-card-headline-wrap h3,
.reference-card-headline-wrap h3 {
  margin: 0;
  color: #ffffff;
}
.service-card-body p,
.reference-card-body p {
  padding: 0 1rem;
}
.service-readmore-btn,
.reference-readmore-btn {
  align-self: flex-end;
  margin-top: auto;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 10px;
  padding: .5rem .85rem;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(47, 92, 56, .22);
}
.service-readmore-btn:hover,
.reference-readmore-btn:hover {
  color: #ffffff;
  filter: brightness(1.08);
}
.news-back-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 10px;
  padding: .56rem .92rem;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(47, 92, 56, .22);
  cursor: pointer;
}
.news-back-btn *,
.news-back-btn span,
.news-back-btn i {
  cursor: pointer;
}
.news-back-btn:hover {
  color: #ffffff;
  filter: brightness(1.05);
}

.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-category-bar {
  margin: 2rem 0 1.1rem;
  padding: .72rem 1rem;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    #2f5c38 0%,
    #3f6f45 58%,
    #5f8a57 82%,
    #89b27b 100%
  );
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .02em;
}
.team-card { text-align: center; padding-bottom: 1rem; }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card h3 { margin: .9rem 0 .2rem; font-size: 1.05rem; }
.team-card p { margin: 0; color: var(--muted); }
.team-card-employee {
  text-align: left;
  padding: 0 0 1rem;
  border: 1px solid #dce8da;
  box-shadow: 0 14px 34px rgba(47, 92, 56, .08);
}
.team-card-employee img {
  border-radius: 14px 14px 0 0;
}
.team-card-employee h3 {
  margin: 1rem 1rem .2rem;
  text-align: center;
  font-size: 1.42rem;
  color: var(--primary-dark);
}
.team-card-employee > p {
  margin: 0 1rem;
  text-align: center;
  font-size: 1.02rem;
}
.team-meta-divider {
  height: 2px;
  margin: .85rem 1rem .75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
}
.team-additional-info {
  margin: 0 1rem .55rem;
  color: var(--text);
  line-height: 1.45;
  font-size: .93rem;
}
.team-meta-list {
  margin: .35rem 1rem 0;
  display: grid;
  gap: .22rem;
  text-align: left;
}
.team-meta-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  font-size: .95rem;
  padding: .08rem .1rem;
}
.team-meta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  color: #fff;
}
.team-meta-item i {
  margin-top: 0;
  color: var(--primary-dark);
}
.team-meta-icon i {
  color: #fff;
}
.team-meta-item a {
  color: inherit;
  text-decoration: none;
}
.team-meta-item a:hover {
  text-decoration: underline;
}
.team-meta-item-note {
  border-top: 1px solid #dce8da;
  margin-top: .2rem;
  padding-top: .55rem;
}

.page-content-header {
  min-height: 300px; display: grid; align-items: end;
  color: #fff; padding: 4rem 0 2.25rem;
  background-size: cover; background-position: center;
}
.pch-kicker { margin: 0; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; opacity: .85; }
.page-content-header h1 { margin: .5rem 0; font-size: clamp(1.8rem, 3.2vw, 3rem); }
.pch-subheadline { margin: 0; max-width: 720px; font-size: 1.08rem; opacity: .94; }
.page-intro { background: var(--surface); border-bottom: 1px solid var(--line); }
.intro-content { padding: 1.8rem 0; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1rem; }
.contact-card {
  padding: 1.2rem;
  position: relative;
  background: linear-gradient(135deg, #F9FCF8 0%, #ffffff 100%);
  border: 1px solid #dce8da;
  box-shadow: 0 14px 34px rgba(47, 92, 56, .08);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  border: 1px solid rgba(95, 138, 87, .18);
}
.contact-form-modern {
  background: linear-gradient(135deg, #F9FCF8 0%, #ffffff 100%);
  border: 1px solid #dce8da;
  box-shadow: 0 14px 34px rgba(47, 92, 56, .08);
}
.contact-form-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  border: 1px solid rgba(95, 138, 87, .22);
}
.opening-hours-card,
.contact-info-card,
.contact-map-card {
  background: linear-gradient(135deg, #F9FCF8 0%, #ffffff 100%);
}
.contact-form-subtitle {
  margin: -.1rem 0 1.1rem;
  color: var(--muted);
  font-size: .96rem;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem .95rem;
}
.contact-field { margin: 0; }
.contact-field-full { grid-column: 1 / -1; }
.contact-form-modern .form-label {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.contact-form-modern .form-control {
  border-radius: 10px;
  border: 1px solid #cfe0cc;
  background: rgba(255,255,255,.92);
  min-height: 44px;
}
.contact-form-modern textarea.form-control {
  min-height: 130px;
}
.contact-info-card h2 { margin-bottom: .8rem; }
.contact-info-name {
  margin: 0 0 .9rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.contact-info-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .55rem;
  align-items: start;
  padding: .5rem .6rem;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(47, 92, 56, .08) 0%,
    rgba(63, 111, 69, .06) 58%,
    rgba(95, 138, 87, .05) 82%,
    rgba(137, 178, 123, .05) 100%
  );
  border: 1px solid #d6e4d3;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-info-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(47, 92, 56, .12);
  border-color: #bdd3b8;
}
.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
}
.contact-info-value {
  line-height: 1.45;
  color: var(--text);
}
.contact-info-value a,
.footer-contact-row a {
  color: inherit;
  text-decoration: none;
}
.contact-info-value a:hover,
.footer-contact-row a:hover {
  text-decoration: underline;
}
.contact-info-item-address .contact-info-value {
  white-space: normal;
}
.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-captcha-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: .7rem;
  align-items: center;
}
.contact-security-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: .9rem;
  margin-bottom: 1rem;
}
.contact-security-item {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.contact-captcha-question {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 .8rem;
  border-radius: 8px;
  border: 1px solid #d8e3d6;
  background: #f7faf6;
  font-weight: 700;
}
.contact-switch-row {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
}
.contact-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}
.contact-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #dc2626;
  transition: .2s ease;
}
.contact-switch-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: .2s ease;
}
.contact-switch input:checked + .contact-switch-slider {
  background: #10b981;
}
.contact-switch input:checked + .contact-switch-slider::before {
  transform: translateX(20px);
}
.contact-switch input:focus-visible + .contact-switch-slider {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .25);
}
.contact-card .form-control:focus,
.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  border-color: #4a7d4f;
  box-shadow: 0 0 0 .2rem rgba(74, 125, 79, .2);
}
.contact-submit-wrap {
  grid-column: 1 / -1;
  margin-top: .2rem;
}
.contact-submit-btn {
  min-width: 220px;
  border-radius: 999px;
  padding: .78rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(47, 92, 56, .23);
}
.contact-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(47, 92, 56, .3);
}
.opening-hours-list { display: flex; flex-direction: column; gap: .5rem; }
.opening-hours-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: .7rem;
  align-items: center;
  padding: .55rem .7rem;
  border-radius: 8px;
  background: #f7faf6;
  border: 1px solid #e3ece1;
}
.opening-hours-day { font-weight: 700; }
.opening-hours-value { color: var(--text); }
.opening-hours-row.is-today {
  background: linear-gradient(
    90deg,
    #2f5c38 0%,
    #3f6f45 58%,
    #5f8a57 82%,
    #89b27b 100%
  );
  border-color: transparent;
}
.opening-hours-row.is-today .opening-hours-day,
.opening-hours-row.is-today .opening-hours-value { color: #ffffff; }
.opening-closures {
  margin-top: .9rem;
  padding-top: .8rem;
  border-top: 1px solid #dce8da;
}
.opening-closures h3 {
  margin: 0 0 .55rem;
  font-size: .98rem;
}
.opening-closures-list {
  display: flex;
  flex-direction: column;
  gap: .42rem;
}
.opening-closures-item {
  display: flex;
  justify-content: space-between;
  gap: .7rem;
  padding: .42rem .55rem;
  border: 1px solid #d6e4d3;
  border-radius: 8px;
  background: rgba(249, 252, 248, .85);
}
.opening-closures-date {
  font-weight: 600;
}
.opening-closures-reason {
  color: var(--primary-dark);
  font-weight: 700;
}
.contact-map {
  width: 100%;
  min-height: 300px;
  border-radius: 10px;
  border: 1px solid #d8e3d6;
  overflow: hidden;
}
.contact-map-marker-tooltip {
  background: linear-gradient(
    90deg,
    #2f5c38 0%,
    #3f6f45 58%,
    #5f8a57 82%,
    #89b27b 100%
  );
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
.contact-map-marker-tooltip:before {
  border-top-color: #3f6f45 !important;
}
.success-msg { color: #1d7f3d; }
.error-msg { color: #b42318; }

.detail-content { padding: 1.2rem; }
.detail-content img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 14px; margin-bottom: 1rem; }
.news-detail-content p {
  margin: 0 0 .95rem;
  line-height: 1.7;
}
.news-detail-content p:last-child {
  margin-bottom: 0;
}
.news-detail-content ul,
.news-detail-content ol {
  margin: 0 0 1rem 1.2rem;
}
.news-detail-content li {
  margin: 0 0 .35rem;
}
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
  margin: 1.2rem 0 .6rem;
  color: var(--primary-dark);
}
.cmsp-milestones-block {
  margin: 1.2rem 0 0;
}
.cmsp-milestones-head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.cmsp-milestones-head h2 {
  margin: 0 0 .45rem;
  color: var(--primary-dark);
}
.cmsp-milestones-head p {
  margin: 0;
  color: var(--muted);
}
.cmsp-milestones-timeline {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding: .4rem 0;
}
.cmsp-milestones-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(79, 126, 85, .22) 0%, rgba(79, 126, 85, .5) 55%, rgba(79, 126, 85, .22) 100%);
  transform: translateX(-50%);
}
.cmsp-milestone-item {
  position: relative;
  display: flex;
  width: calc(50% - 26px);
}
.cmsp-milestone-item.is-left {
  justify-self: start;
}
.cmsp-milestone-item.is-right {
  justify-self: end;
}
.cmsp-milestone-card {
  width: 100%;
  background: linear-gradient(135deg, #f9fcf8 0%, #ffffff 100%);
  border: 1px solid #dce8da;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(47, 92, 56, .08);
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
}
.cmsp-milestone-content {
  padding: 1rem 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.cmsp-milestone-text {
  display: block;
  flex: 1;
  min-width: 0;
}
.cmsp-milestone-content h3 {
  margin: 0 0 .5rem;
  color: #223e2a;
  font-size: 1.12rem;
}
.cmsp-milestone-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}
.cmsp-milestone-image-wrap {
  flex: 0 0 auto;
  margin: 0;
}
.cmsp-milestone-image-wrap img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dce8da;
  display: block;
}
.cmsp-milestone-date {
  min-width: 92px;
  border-left: 1px solid #dce8da;
  padding: .75rem .72rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(233, 244, 233, .4);
}
.cmsp-m-date-month {
  color: #4c6f54;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .03em;
}
.cmsp-m-date-day {
  color: #1f3026;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 700;
}
.cmsp-m-date-year {
  color: #4c6f54;
  font-size: .93rem;
}
.cmsp-milestone-dot {
  position: absolute;
  top: 50%;
  right: -31px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: #2f5c38;
  border: 3px solid #eef5ec;
  box-shadow: 0 0 0 2px rgba(47, 92, 56, .15);
}
.cmsp-milestone-item.is-right .cmsp-milestone-dot {
  right: auto;
  left: -31px;
}
@media (max-width: 991.98px) {
  .cmsp-milestones-timeline::before {
    left: 12px;
    transform: none;
  }
  .cmsp-milestone-item,
  .cmsp-milestone-item.is-left,
  .cmsp-milestone-item.is-right {
    justify-self: stretch;
    width: calc(100% - 30px);
    margin-left: 30px;
  }
  .cmsp-milestone-dot,
  .cmsp-milestone-item.is-right .cmsp-milestone-dot {
    left: -25px;
    right: auto;
  }
}
@media (max-width: 600px) {
  .cmsp-milestone-content {
    flex-direction: column;
    gap: 8px;
  }
  .cmsp-milestone-image-wrap img {
    width: 100%;
    max-width: 240px;
    height: auto;
  }
  .cmsp-milestone-card {
    grid-template-columns: 1fr;
  }
  .cmsp-milestone-date {
    border-left: 0;
    border-top: 1px solid #dce8da;
    flex-direction: row;
    gap: .45rem;
    justify-content: flex-start;
    align-items: baseline;
    min-width: 0;
  }
}
.legal-content { padding: 1.4rem; }

.footer-module {
  position: relative;
  z-index: 0;
  background: #1f3026;
  color: #dce7dc;
  padding: 3.2rem 0 1.4rem;
}
.footer-module::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  height: clamp(140px, 21vw, 280px);
  background-image: url("../img/silhouette.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  filter: brightness(1.12) contrast(1.06);
}
.footer-module > .container-xl {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.footer-card {
  background: linear-gradient(135deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 24px rgba(20, 38, 24, .28);
}
.footer-logo-image {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto .75rem;
  background: #fff;
  border-radius: 14px;
  padding: .45rem .65rem;
  box-shadow: 0 10px 20px rgba(20, 38, 24, .2);
  text-align: center;
}
.footer-card .footer-logo-wrap {
  width: fit-content;
}
.footer-card .footer-logo-wrap,
.footer-card .footer-logo-wrap img {
  margin-left: auto;
  margin-right: auto;
}
.footer-card h4 { margin-top: 0; color: #fff; }
.footer-card p {
  margin: 0 0 .55rem;
  color: #e9f4ea;
}
.footer-card p:last-child {
  margin-bottom: 0;
}
.footer-contact-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: .45rem;
  align-items: start;
  line-height: 1.4;
}
.footer-contact-row i {
  margin-top: .15rem;
  color: #d6edd8;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  color: #e9f4ea;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, filter .2s ease;
}
.footer-links li a *,
.footer-links li a span,
.footer-links li a i {
  cursor: pointer;
}
.footer-link-arrow {
  font-size: .74rem;
  color: #d6edd8;
  transition: transform .2s ease, color .2s ease;
}
.footer-links a:hover, .back-top-link:hover { color: #fff; }
.footer-links li a:hover {
  transform: translateX(4px);
  filter: brightness(1.06);
}
.footer-links li a:hover .footer-link-arrow {
  transform: translateX(2px);
  color: #fff;
}
.footer-bottom {
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.back-top-overlay {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  box-shadow: 0 12px 24px rgba(47, 92, 56, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.back-top-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top-overlay:hover {
  filter: brightness(1.05);
}
.external-link-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(16, 24, 19, .65);
  backdrop-filter: blur(3px);
}
.external-link-overlay.is-open {
  display: flex;
}
.external-link-dialog {
  width: min(540px, 100%);
  background: linear-gradient(135deg, #F9FCF8 0%, #ffffff 100%);
  color: #1b2c21;
  border-radius: 14px;
  border: 1px solid #d4e2d2;
  box-shadow: 0 24px 44px rgba(0, 0, 0, .24);
  padding: 1.1rem 1.2rem;
}
.external-link-dialog h3 {
  margin: -1.1rem -1.2rem .8rem;
  padding: .72rem 1rem;
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%);
  color: #fff;
  border-radius: 14px 14px 0 0;
  font-size: 1.22rem;
}
.external-link-dialog p {
  margin: 0 0 .7rem;
  color: #294135;
}
.external-link-target {
  margin-bottom: .9rem;
  padding: .55rem .65rem;
  border-radius: 10px;
  background: #f2f7f1;
  border: 1px solid #dbe8d9;
  word-break: break-all;
  font-size: .93rem;
}
.external-link-actions {
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
}
.external-link-btn {
  border: 0;
  border-radius: 10px;
  padding: .56rem .95rem;
  font-weight: 700;
}
.external-link-btn-continue {
  background: #34932f;
  color: #fff;
}
.external-link-btn-cancel {
  background: #e00003;
  color: #fff;
}
body.external-link-overlay-open {
  overflow: hidden;
}

/* A11y-Widget: an Natura-Farben angleichen */
body.natura-page {
  --a11y-widget-color: #3f6f45;
}
.a11y-widget__fab {
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%) !important;
}
.a11y-widget__header {
  background: linear-gradient(90deg, #2f5c38 0%, #3f6f45 58%, #5f8a57 82%, #89b27b 100%) !important;
}
.a11y-widget__toggle[aria-pressed="true"],
.a11y-widget__value-btn[aria-pressed="true"],
body.natura-page .a11y-widget__slider::-webkit-slider-thumb,
body.natura-page .a11y-widget__slider::-moz-range-thumb {
  background: #3f6f45 !important;
  border-color: #3f6f45 !important;
}
.a11y-widget__section {
  border-color: #cfe0cc !important;
}
#cookieConsentButton i,
#cookieConsentOverlay i {
  color: #fff !important;
}
.a11y-widget__fab i,
.a11y-widget__title i,
.a11y-widget__label-text i,
.a11y-widget__section-icon,
.a11y-widget__reset i,
.a11y-widget__footer-link i {
  color: currentColor !important;
}
.a11y-widget__profile:hover,
.a11y-widget__profile--active,
.a11y-widget__toggle[aria-pressed="true"],
.a11y-widget__value-btn[aria-pressed="true"] {
  border-color: #3f6f45 !important;
}
.a11y-widget__profile--active {
  background: #edf6ec !important;
}
.a11y-widget__profile:hover {
  background: #f5faf4 !important;
}
.a11y-widget__section-content,
.a11y-widget__legal {
  border-color: #cfe0cc !important;
}
.a11y-widget__section-header:focus,
.a11y-widget__profile:focus,
.a11y-widget__value-btn:focus,
.a11y-widget__select:focus,
.a11y-widget__slider:focus,
.a11y-widget__toggle:focus,
.a11y-widget__reset:focus,
.a11y-widget__color-btn:focus {
  outline-color: #3f6f45 !important;
  border-color: #3f6f45 !important;
}
html[data-a11y-focus="enhance"] *:focus {
  outline: 3px solid #3f6f45 !important;
  box-shadow: 0 0 0 3px rgba(63, 111, 69, 0.28) !important;
}
#a11y-reading-guide {
  background: #3f6f45 !important;
  box-shadow: 0 0 4px rgba(63, 111, 69, 0.45) !important;
}
#a11y-reading-guide-arrow {
  border-bottom-color: #3f6f45 !important;
  filter: drop-shadow(0 2px 4px rgba(63, 111, 69, 0.45)) !important;
}
.a11y-reading-highlight {
  background: rgba(63, 111, 69, 0.2) !important;
  outline-color: #3f6f45 !important;
}
.a11y-widget__fab:focus {
  outline: 3px solid #3f6f45 !important;
  box-shadow: 0 0 0 3px rgba(63, 111, 69, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.a11y-widget__legal,
.a11y-widget__section,
.a11y-widget__section-content {
  border-color: #cfe0cc !important;
}
.a11y-widget__legal {
  border-left-color: #3f6f45 !important;
}
.a11y-widget__toggle[aria-pressed="true"],
.a11y-widget__value-btn[aria-pressed="true"],
.a11y-widget__value-btn[aria-pressed="true"]:hover {
  background: #3f6f45 !important;
  border-color: #3f6f45 !important;
  color: #fff !important;
}
.a11y-widget__slider:focus {
  outline: 2px solid #3f6f45 !important;
}
.a11y-widget__size-select:focus,
.a11y-widget__select:focus,
.a11y-widget__toggle:focus,
.a11y-widget__value-btn:focus,
.a11y-widget__profile:focus,
.a11y-widget__reset:focus,
.a11y-widget__color-btn:focus {
  outline: 2px solid #3f6f45 !important;
  border-color: #3f6f45 !important;
}
.a11y-widget__profile:hover,
.a11y-widget__profile--active,
.a11y-widget__color-btn:hover,
.a11y-widget__color-btn--active {
  border-color: #3f6f45 !important;
  box-shadow: 0 0 0 2px rgba(63, 111, 69, 0.2) !important;
}
html[data-a11y-blue-filter="true"] body::before {
  background: rgba(63, 111, 69, 0.1) !important;
}

@media (max-width: 991px) {
  .teaser-grid, .service-grid, .reference-grid, .news-grid, .team-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-security-row { grid-template-columns: 1fr; }
  .topbar-grid,
  .topbar-grid.topbar-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar-col-left, .topbar-col-center, .topbar-col-right { justify-content: center; text-align: center; }
  .topbar-col-left .topbar-item, .topbar-col-center .topbar-item, .topbar-col-right .topbar-item { justify-content: center; text-align: center; }
  .nav-module {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1100;
    --nav-core-height: 68px;
  }
  .nav-module .navbar-collapse {
    margin-left: 290px;
  }
  .site-logo { height: 96px; }
  .nav-module.nav-scrolled .site-logo,
  .nav-module.nav-fixed .site-logo { height: 72px; }
}
@media (max-width: 767px) {
  .nav-module {
    position: static;
    top: auto;
    z-index: auto;
  }
  .nav-module.nav-fixed {
    position: static !important;
    left: auto;
    right: auto;
    width: auto;
    box-shadow: none;
  }
  .nav-module .navbar-brand {
    position: static;
    margin-top: 0;
    margin-bottom: 0;
    padding: .2rem .35rem;
    box-shadow: 0 4px 10px rgba(28, 47, 34, 0.12);
  }
  .nav-module .navbar-collapse {
    margin-left: 0;
  }
  .site-logo {
    height: 72px;
  }
  .topbar-grid,
  .topbar-grid.topbar-grid-3 { grid-template-columns: 1fr; }
  .topbar-col { width: 100%; }
  .nav-link-highlight {
    margin-left: 0;
    margin-top: .35rem;
    display: inline-flex;
    align-items: center;
  }
  .topbar-item {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .hero-control-shell {
    height: 74px;
    width: 34px;
  }
  .hero-slider-module .carousel-indicators [data-bs-target] {
    width: 24px;
  }
  /* Mobil: gefloatetes Inhaltsbild auf volle Breite und unter die Headline ziehen */
  .detail-content .wysiwyg-image-wrapper {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem 0 !important;
    display: block !important;
  }
  .detail-content .wysiwyg-image-wrapper img,
  .detail-content .wysiwyg-media {
    width: 100% !important;
    height: auto !important;
  }
  .detail-content > div:has(> .wysiwyg-image-wrapper) {
    display: flex;
    flex-direction: column;
  }
  .detail-content > div:has(> .wysiwyg-image-wrapper) > * { order: 2; }
  .detail-content > div:has(> .wysiwyg-image-wrapper) > h1:first-of-type,
  .detail-content > div:has(> .wysiwyg-image-wrapper) > h2:first-of-type { order: 0; }
  .detail-content > div:has(> .wysiwyg-image-wrapper) > .wysiwyg-image-wrapper { order: 1; }
}
@media (max-width: 575px) {
  .teaser-grid, .service-grid, .reference-grid, .news-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .teaser-card {
    max-width: 100%;
  }
  .topbar-contact { margin-left: 0; width: 100%; }
  .topbar-grid,
  .topbar-grid.topbar-grid-3 { grid-template-columns: 1fr; }
  .back-top-overlay {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}
