@charset "UTF-8";
body {
  background: #eeeeee;
  font-family: "Source Sans 3", sans-serif;
  overflow-x: hidden;
  margin-top: 72px;
}

.cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  z-index: 200;
  background: white;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 24px rgba(28, 43, 33, 0.08), 0 1px 4px rgba(28, 43, 33, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s 2s ease-out forwards;
}
.cookies .icon {
  width: 36px;
  height: 36px;
  background: #eaf1ec;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cookies .icon i {
  width: 18px;
  height: 18px;
  color: #3a6349;
}
.cookies .aside .info {
  font-size: 13px;
  color: #6b7a6e;
  line-height: 1.6;
}
.cookies .aside .actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.cookies .aside .actions .accept {
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}
.cookies .aside .actions .confirm {
  padding: 7px 16px;
  background: #3a6349;
  color: white;
  font-weight: 600;
  transition: background 0.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(25, 28, 26, 0);
  pointer-events: none;
  transition: background 0.35s ease;
}
.main-overlay.active {
  background: rgba(25, 28, 26, 0.42);
  pointer-events: auto;
}

.main-header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 98;
  height: 72px;
  border-bottom: 1px solid #dddddd;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-header .brand {
  display: flex;
  gap: 10px;
  margin-right: auto;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
}
.main-header .brand .logo-mark {
  display: flex;
  align-items: center;
}
.main-header .brand .logo-mark img {
  width: 36px;
  flex-shrink: 0;
}
.main-header .brand .logo-name {
  display: flex;
  flex-direction: column;
}
.main-header .brand .logo-name strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: "Lora", serif;
  color: #1c2b21;
}
.main-header .brand .logo-name span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: gray;
  margin-top: 3px;
  letter-spacing: 0.1em;
}
.main-header .search {
  position: relative;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 280px;
  width: auto;
  flex-shrink: 1;
}
.main-header .search input {
  width: 100%;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  height: 42px;
  padding: 0 25px 0 15px;
  background: rgba(255, 255, 255, 0.85);
  color: black;
  font-size: 14px;
}
.main-header .search button {
  position: absolute;
  top: 12px;
  right: 12px;
  color: gray;
  font-size: 16px;
}
.main-header .main-nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex: 0 0 44px;
}

@media screen and (max-width: 768px) {
  .main-header {
    display: flex;
    justify-content: space-between;
  }
  .main-header .brand {
    margin-right: 0;
  }
  .main-header .brand .logo-name {
    display: none;
  }
}
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 320px;
  height: 100dvh;
  background: white;
  border-left: 1px solid gray;
  box-shadow: -10px 0 30px rgba(20, 24, 21, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
}
.main-nav .accent {
  height: 4px;
  background: green;
}
.main-nav .top {
  border-bottom: 1px solid #eeeeee;
  padding: 14.5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-nav .top strong {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: gray;
}
.main-nav .top button {
  width: 38px;
  height: 38px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}
.main-nav .middle {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0;
  flex: 1;
}
.main-nav .middle .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-size: 14px;
  color: #344b3b;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  position: relative;
  transition: color 300ms ease, background 300ms ease;
}
.main-nav .middle .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: green;
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .middle .nav-item .nav-link:hover {
  color: #3a6349;
  background: #f2f7f3;
}
.main-nav .middle .nav-item .nav-link:hover::before {
  transform: scaleY(1);
}
.main-nav .middle .nav-item .nav-dropdown {
  height: 0;
  overflow: hidden;
  background: #f2f7f3;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .middle .nav-item .nav-dropdown .nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px 9px 34px;
  font-size: 14px;
  color: #6b7a6e;
  transition: color 200ms ease, padding-left 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .middle .nav-item .nav-dropdown .nav-dropdown-link::before {
  content: "–";
  font-size: 11px;
  color: gray;
  flex-shrink: 0;
}
.main-nav .middle .nav-item .nav-dropdown .nav-dropdown-link:hover {
  color: #3a6349;
  padding-left: 40px;
}
.main-nav .middle .nav-item.expanded {
  background: #f2f7f3;
}
.main-nav .middle .nav-item.expanded .nav-link {
  color: #3a6349;
}
.main-nav .middle .nav-item.expanded .nav-link::before {
  transform: scaleY(1);
}
.main-nav .middle .nav-item.expanded .nav-link i {
  transform: rotate(90deg);
}
.main-nav .middle .nav-item.expanded .nav-dropdown {
  max-height: 100%;
}
.main-nav .middle .nav-item.expanded .nav-dropdown .nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px 9px 34px;
  font-size: 14px;
  color: #6b7a6e;
  transition: all 300ms ease;
}
.main-nav .middle .nav-item.expanded .nav-dropdown .nav-dropdown-link:hover {
  padding-left: 40px;
  color: #3a6349;
}
.main-nav .middle .nav-item.expanded .nav-dropdown .nav-dropdown-link::before {
  content: "–";
  font-size: 11px;
  color: gray;
  flex-shrink: 0;
}
.main-nav .bottom {
  padding: 18px 24px;
  border-top: 1px solid #eeeeee;
  background: #f2f7f3;
  display: flex;
  align-items: center;
  gap: 14px;
}
.main-nav .bottom a {
  font-size: 12px;
  color: gray;
}
.main-nav .bottom .separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #dddddd;
}

.main-nav.active {
  transform: translateX(0);
}/*# sourceMappingURL=style.css.map */