@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2B2B2B;
  background-color: #FFFFFF;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1B4332;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.625rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2D6A4F;
  transition: color 150ms ease;
}
a:hover {
  text-decoration: underline;
  color: #1B4332;
}

strong {
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 4px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mt-3 {
  margin-top: 16px;
}

.mb-3 {
  margin-bottom: 16px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.mb-5 {
  margin-bottom: 48px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

.gap-4 {
  gap: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.site-header__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1B4332;
  text-decoration: none;
  white-space: nowrap;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.logo:hover {
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2B2B2B;
  transition: all 150ms ease;
}
@media (min-width: 768px) {
  .nav-toggle-label {
    display: none;
  }
}

.main-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 100;
}
.nav-toggle:checked ~ .main-nav {
  display: block;
}
@media (min-width: 768px) {
  .main-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    padding: 0;
    gap: 32px;
  }
}
.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .main-nav__list {
    flex-direction: row;
    gap: 32px;
  }
}
.main-nav__item {
  position: relative;
}
@media (min-width: 768px) {
  .main-nav__item--has-children:hover .main-nav__sub {
    display: block;
  }
}
.main-nav__link {
  display: block;
  padding: 8px 0;
  color: #2B2B2B;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 150ms ease;
  text-decoration: none;
}
.main-nav__link:hover, .main-nav__link--active {
  color: #2D6A4F;
  text-decoration: none;
}
.main-nav__link--active {
  border-bottom: 2px solid #2D6A4F;
}
.main-nav__sub {
  display: none;
  padding-left: 16px;
}
.nav-toggle:checked ~ .main-nav .main-nav__sub {
  display: block;
}
@media (min-width: 768px) {
  .main-nav__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 8px 0;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    z-index: 100;
  }
}
.main-nav__sub-link {
  display: block;
  padding: 4px 16px;
  color: #2B2B2B;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease;
}
.main-nav__sub-link:hover, .main-nav__sub-link--active {
  color: #2D6A4F;
  background: #FAFAF5;
  text-decoration: none;
}
.main-nav__sub-link--active {
  font-weight: 600;
}

.header-search {
  display: none;
}
@media (min-width: 768px) {
  .header-search {
    display: block;
  }
}

.site-footer {
  background: #1B4332;
  color: #FFFFFF;
  padding-top: 48px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.site-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 576px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-footer__heading {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__list li a {
  font-size: 0.875rem;
}
.site-footer__newsletter .newsletter-form__message {
  font-size: 0.8125rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.site-footer__newsletter .newsletter-form__message.is-success {
  background: rgba(255, 255, 255, 0.15);
}
.site-footer__newsletter .newsletter-form__message.is-error {
  background: rgba(231, 76, 60, 0.3);
}
.site-footer__newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.site-footer__newsletter .newsletter-form input {
  flex: 1;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #2B2B2B;
}

.footer-bottom {
  margin-top: 48px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar {
    display: block;
    width: 280px;
    flex-shrink: 0;
  }
}
.sidebar__block {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  margin-bottom: 16px;
}
.sidebar__block-title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #1B4332;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #52B788;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar__list li a {
  font-size: 0.875rem;
  color: #2B2B2B;
  display: block;
  padding: 4px 0;
}
.sidebar__list li a:hover {
  color: #2D6A4F;
}
.sidebar__promo {
  background: #E76F51;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 32px 16px;
  text-align: center;
}
.sidebar__promo h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.sidebar__promo p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.breadcrumb {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.8125rem;
  color: #6B7280;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item::after {
  content: "›";
  margin-left: 4px;
  color: #6B7280;
}
.breadcrumb__item:last-child {
  font-weight: 600;
  color: #2B2B2B;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__item:last-child a {
  pointer-events: none;
  color: #2B2B2B;
  text-decoration: none;
}
.breadcrumb__item a {
  color: #6B7280;
}
.breadcrumb__item a:hover {
  color: #2D6A4F;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 576px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.layout-content-sidebar {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .layout-content-sidebar {
    flex-direction: row;
  }
}
.layout-content-sidebar .content-main {
  flex: 1;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
  transition: all 250ms ease;
  text-decoration: none;
}
.btn--primary {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border-color: #2D6A4F;
}
.btn--primary:hover {
  filter: brightness(0.9);
}
.btn--primary:hover {
  background-color: #1B4332;
  border-color: #1B4332;
}
.btn--accent {
  background-color: #E76F51;
  color: #FFFFFF;
  border-color: #E76F51;
}
.btn--accent:hover {
  filter: brightness(0.9);
}
.btn--accent:hover {
  background-color: rgb(226.0545454545, 81.3272727273, 45.1454545455);
  border-color: rgb(226.0545454545, 81.3272727273, 45.1454545455);
}
.btn--outline {
  background: transparent;
  border-color: #2D6A4F;
  color: #2D6A4F;
}
.btn--outline:hover {
  background: #2D6A4F;
  color: #FFFFFF;
}
.btn--outline-white {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.btn--outline-white:hover {
  background: #FFFFFF;
  color: #1B4332;
}
.btn--sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
}

.card-article {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.card-article:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.card-article__image {
  aspect-ratio: 1.7777777778;
  overflow: hidden;
}
.card-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}
.card-article:hover .card-article__image img {
  transform: scale(1.03);
}
.card-article__body {
  padding: 16px;
}
.card-article__tag {
  display: inline-block;
  margin-bottom: 8px;
}
.card-article__title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #1B4332;
  margin-bottom: 8px;
  line-height: 1.4;
}
.card-article__title a {
  color: inherit;
  text-decoration: none;
}
.card-article__title a:hover {
  color: #2D6A4F;
}
.card-article__excerpt {
  font-size: 0.875rem;
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.card-article__meta {
  font-size: 0.75rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card-product {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.card-product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.card-product__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #FAFAF5;
}
.card-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-product__body {
  padding: 16px;
}
.card-product__name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #1B4332;
  margin-bottom: 4px;
}
.card-product__price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2B2B2B;
  margin: 8px 0;
}
.card-product .btn {
  margin-top: 8px;
}

.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
}
.comparison-table__wrapper {
  min-width: 600px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(107, 114, 128, 0.15);
}
.comparison-table th {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #FAFAF5;
  position: sticky;
  top: 0;
}
.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: #2B2B2B;
  background: #FAFAF5;
}
.comparison-table__product-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 auto;
}
.comparison-table__product-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #1B4332;
}
.comparison-table .comparison-table__featured {
  border-left: 2px solid #2D6A4F;
  border-right: 2px solid #2D6A4F;
  background: rgba(82, 183, 136, 0.05);
  position: relative;
}
.comparison-table .comparison-table__badge {
  display: inline-block;
  background: #2D6A4F;
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 8px;
}

.product-box {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  border-left: 3px solid #52B788;
}
@media (min-width: 768px) {
  .product-box {
    flex-direction: row;
  }
}
.product-box__image {
  flex-shrink: 0;
}
.product-box__image img {
  width: 100%;
  max-width: 200px;
  border-radius: 4px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .product-box__image img {
    width: 200px;
    height: 200px;
  }
}
.product-box__info {
  flex: 1;
}
.product-box__name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #1B4332;
  margin-bottom: 4px;
}
.product-box__price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2B2B2B;
  margin: 8px 0;
}
.product-box__features {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-box__features li {
  font-size: 0.875rem;
  padding-left: 16px;
  position: relative;
}
.product-box__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #52B788;
  font-weight: 600;
}
.product-box--vertical {
  flex-direction: column;
  text-align: center;
}
.product-box--vertical .product-box__image img {
  margin: 0 auto;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 576px) {
  .pros-cons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pros,
.cons {
  border-radius: 8px;
  padding: 16px;
}
.pros__title,
.cons__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}
.pros__list,
.cons__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros__list li,
.cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pros__list li::before,
.cons__list li::before {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
}

.pros {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.pros__title {
  color: #16a34a;
}
.pros .pros__list li::before {
  content: "✓";
  color: #16a34a;
}

.cons {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.cons__title {
  color: #dc2626;
}
.cons .cons__list li::before {
  content: "✗";
  color: #dc2626;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.star-rating__stars {
  display: inline-flex;
  gap: 2px;
  color: #E76F51;
  font-size: 1rem;
  letter-spacing: 1px;
}
.star-rating__empty {
  color: #d1d5db;
}
.star-rating__value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2B2B2B;
  margin-left: 4px;
}
.star-rating--sm .star-rating__stars {
  font-size: 0.75rem;
}
.star-rating--sm .star-rating__value {
  font-size: 0.6875rem;
}
.star-rating--lg .star-rating__stars {
  font-size: 1.375rem;
}
.star-rating--lg .star-rating__value {
  font-size: 1rem;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}
.search-bar__icon {
  position: absolute;
  left: 0.75rem;
  color: #6B7280;
  font-size: 0.875rem;
  pointer-events: none;
}
.search-bar__input {
  width: 100%;
  padding: 8px 16px 8px 2.25rem;
  border: 1px solid rgba(107, 114, 128, 0.25);
  border-radius: 50px;
  background: #FAFAF5;
  font-size: 0.875rem;
  transition: all 150ms ease;
}
.search-bar__input::placeholder {
  color: #6B7280;
}
.search-bar__input:focus {
  outline: none;
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.search-bar--lg .search-bar__input {
  padding: 0.75rem 32px 0.75rem 2.75rem;
  font-size: 1rem;
}

.toc {
  background: #FAFAF5;
  border-left: 4px solid #2D6A4F;
  border-radius: 0 8px 8px 0;
  padding: 16px 32px;
  margin-bottom: 32px;
}
.toc__title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #1B4332;
  margin-bottom: 16px;
}
.toc__list {
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc__list li {
  counter-increment: toc-counter;
}
.toc__list li a {
  display: block;
  color: #2D6A4F;
  font-size: 0.875rem;
  padding: 4px 0;
  text-decoration: none;
}
.toc__list li a::before {
  content: counter(toc-counter) ". ";
  font-weight: 600;
}
.toc__list li a:hover {
  text-decoration: underline;
}

.faq-accordion {
  margin: 32px 0;
}

.faq-item {
  border-bottom: 1px solid rgba(107, 114, 128, 0.15);
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1rem;
  color: #2B2B2B;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}
.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #2D6A4F;
  transition: transform 150ms ease;
}
.faq-item__answer {
  display: none;
  padding: 0 0 16px 16px;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.7;
}
.faq-item__answer p {
  margin-bottom: 8px;
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}
.faq-item:first-child .faq-item__answer {
  display: block;
}
.faq-item:first-child .faq-item__icon {
  transform: rotate(45deg);
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 16px 0;
}
.alert__icon {
  flex-shrink: 0;
  font-size: 1.125rem;
}
.alert__content {
  flex: 1;
}
.alert__content p {
  margin-bottom: 4px;
}
.alert__content p:last-child {
  margin-bottom: 0;
}
.alert--info {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #1e40af;
}
.alert--warning {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #92400e;
}
.alert--success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #166534;
}
.alert--danger {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #991b1b;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 32px 0;
}
.pagination__item a,
.pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2B2B2B;
  text-decoration: none;
  transition: all 150ms ease;
}
.pagination__item a:hover {
  background: rgba(45, 106, 79, 0.08);
  color: #2D6A4F;
  text-decoration: none;
}
.pagination__item--active span {
  background: #2D6A4F;
  color: #FFFFFF;
}
.pagination__item--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.tag {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease;
  background: rgba(82, 183, 136, 0.12);
  color: #2D6A4F;
}
.tag:hover {
  background: rgba(82, 183, 136, 0.25);
  text-decoration: none;
}
.tag--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.tag--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.tag--orange {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.tag--red {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.tag--gray {
  background: rgba(107, 114, 128, 0.1);
  color: #6B7280;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #1B4332;
  color: #FFFFFF;
  padding: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
  }
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.share-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.share-buttons__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6B7280;
}
.share-buttons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(107, 114, 128, 0.1);
  color: #6B7280;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 150ms ease;
}
.share-buttons__item:hover {
  text-decoration: none;
}
.share-buttons__item--facebook:hover {
  background: #1877f2;
  color: #FFFFFF;
}
.share-buttons__item--twitter:hover {
  background: #1da1f2;
  color: #FFFFFF;
}
.share-buttons__item--x:hover {
  background: #000000;
  color: #FFFFFF;
}
.share-buttons__item--instagram:hover {
  background: #e4405f;
  color: #FFFFFF;
}
.share-buttons__item--youtube:hover {
  background: #ff0000;
  color: #FFFFFF;
}
.share-buttons__item--linkedin:hover {
  background: #0a66c2;
  color: #FFFFFF;
}
.share-buttons__item--pinterest:hover {
  background: #e60023;
  color: #FFFFFF;
}
.share-buttons__item--tiktok:hover {
  background: #000000;
  color: #FFFFFF;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--facebook, .icon--instagram, .icon--pinterest, .icon--linkedin, .icon--x, .icon--youtube, .icon--tiktok, .icon--whatsapp {
  fill: currentColor;
  stroke: none;
}
.icon--star-full {
  fill: currentColor;
  stroke: currentColor;
}
.icon--star-half {
  stroke: currentColor;
}
.icon--star-empty {
  fill: none;
  stroke: currentColor;
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .hero {
    min-height: 500px;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.6);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 48px 16px;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
  }
}
.hero__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}

.home-section {
  padding: 48px 0;
}
.home-section__header {
  text-align: center;
  margin-bottom: 32px;
}
.home-section--alt {
  background: #FAFAF5;
}

.card-category {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.card-category__image {
  aspect-ratio: 1;
  overflow: hidden;
}
.card-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}
.card-category:hover .card-category__image img {
  transform: scale(1.05);
}
.card-category__name {
  text-align: center;
  padding: 16px;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1B4332;
  background: #FFFFFF;
}

.popular-guide {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}
.popular-guide:last-child {
  border-bottom: none;
}
.popular-guide__image {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
}
.popular-guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-guide__info {
  flex: 1;
}
.popular-guide__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B2B2B;
  margin-bottom: 4px;
  line-height: 1.4;
}
.popular-guide__title a {
  color: inherit;
  text-decoration: none;
}
.popular-guide__title a:hover {
  color: #2D6A4F;
}
.popular-guide__meta {
  font-size: 0.75rem;
  color: #6B7280;
}

.newsletter {
  background: #2D6A4F;
  color: #FFFFFF;
  padding: 48px 0;
  text-align: center;
}
.newsletter__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.newsletter__subtitle {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 32px;
}
.newsletter__message {
  max-width: 460px;
  margin: 0 auto 16px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
}
.newsletter__message.is-success {
  background: rgba(255, 255, 255, 0.2);
}
.newsletter__message.is-error {
  background: rgba(231, 76, 60, 0.3);
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .newsletter__form {
    flex-direction: row;
  }
}
.newsletter__form input[type=email] {
  flex: 1;
  padding: 0.75rem 16px;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #2B2B2B;
}

.category-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.category-header__title {
  margin-bottom: 16px;
}
.category-header__intro {
  max-width: 800px;
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.category-header__banner {
  border-radius: 8px;
  overflow: hidden;
}
.category-header__banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .category-header__banner img {
    height: 300px;
  }
}

.subcategories {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.subcategories__list {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
  min-width: max-content;
}
.subcategories__item {
  flex-shrink: 0;
  width: 140px;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease;
}
.subcategories__item:hover {
  transform: translateY(-2px);
}
.subcategories__item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.subcategories__item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2B2B2B;
}

.article-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 16px;
}
.article-header__tag {
  margin-bottom: 16px;
}
.article-header__title {
  margin-bottom: 16px;
}
.article-header__meta {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-header__image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.article-header__image img {
  width: 100%;
  height: auto;
}

.article-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}
.article-content p {
  line-height: 1.8;
  margin-bottom: 16px;
}
.article-content ul, .article-content ol {
  margin-bottom: 16px;
  padding-left: 32px;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: disc;
}
.article-content ol li {
  list-style: decimal;
}
.article-content img {
  border-radius: 8px;
  margin: 16px 0;
}

.specs-table {
  width: 100%;
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
}
.specs-table tr:nth-child(even) {
  background: #FAFAF5;
}
.specs-table th,
.specs-table td {
  padding: 8px 16px;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}
.specs-table th {
  font-weight: 600;
  color: #2B2B2B;
  width: 40%;
}
.specs-table td {
  color: #6B7280;
}

.related-articles {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding: 48px 0;
}

.product-hero {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .product-hero {
    flex-direction: row;
  }
}

.product-gallery {
  flex: 1;
}
.product-gallery__main {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #FAFAF5;
}
.product-gallery__main img {
  width: 100%;
  height: auto;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
}
.product-gallery__thumbs-item {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 150ms ease;
}
.product-gallery__thumbs-item--active, .product-gallery__thumbs-item:hover {
  border-color: #2D6A4F;
}
.product-gallery__thumbs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
}
.product-info__category {
  margin-bottom: 16px;
}
.product-info__title {
  margin-bottom: 16px;
}
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-info__rating span {
  font-size: 0.8125rem;
  color: #6B7280;
}
.product-info__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 16px;
}
.product-info__description {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-info__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-info__features li {
  font-size: 0.875rem;
  padding-left: 32px;
  position: relative;
}
.product-info__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #52B788;
  font-weight: 700;
}
.product-info__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.product-info__disclaimer {
  font-size: 0.6875rem;
  color: #6B7280;
  font-style: italic;
}

.product-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding: 32px 0;
}
.product-section__title {
  margin-bottom: 32px;
}

.specs-table--zebra tr:nth-child(even) {
  background: #FAFAF5;
}

.product-review {
  max-width: 800px;
}
.product-review p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.mentions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mention-card {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  align-items: center;
}
.mention-card__image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}
.mention-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mention-card__info {
  flex: 1;
}
.mention-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2B2B2B;
  margin-bottom: 4px;
}
.mention-card__title a {
  color: inherit;
}
.mention-card__title a:hover {
  color: #2D6A4F;
}
.mention-card__excerpt {
  font-size: 0.8125rem;
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding: 32px 0;
}
.search-header__title {
  margin-bottom: 8px;
}
.search-header__count {
  color: #6B7280;
  font-size: 0.875rem;
  margin-bottom: 32px;
}
.search-header .search-bar {
  max-width: 500px;
}

.search-filters {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(107, 114, 128, 0.2);
  color: #2B2B2B;
  text-decoration: none;
  transition: all 150ms ease;
  cursor: pointer;
  background: #FFFFFF;
}
.filter-pill:hover {
  border-color: #2D6A4F;
  color: #2D6A4F;
  text-decoration: none;
}
.filter-pill--active {
  background: #2D6A4F;
  color: #FFFFFF;
  border-color: #2D6A4F;
}
.filter-pill--active:hover {
  background: #1B4332;
  color: #FFFFFF;
}

.search-results {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.search-result {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
  align-items: flex-start;
}
.search-result__image {
  flex-shrink: 0;
  width: 160px;
  height: 110px;
  border-radius: 4px;
  overflow: hidden;
}
.search-result__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result__info {
  flex: 1;
}
.search-result__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.search-result__title a {
  color: #2B2B2B;
  text-decoration: none;
}
.search-result__title a:hover {
  color: #2D6A4F;
}
.search-result__excerpt {
  font-size: 0.875rem;
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}
.search-result__meta {
  font-size: 0.75rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.search-result--product .search-result__image {
  width: 120px;
  height: 120px;
  background: #FAFAF5;
}

.contact-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form__group {
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2B2B2B;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 16px;
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 4px;
  font-size: 0.875rem;
  background: #FFFFFF;
  transition: border-color 150ms ease;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #6B7280;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}
.contact-form__checkbox input[type=checkbox] {
  margin-top: 3px;
}
.contact-form__checkbox label {
  font-weight: 400;
  font-size: 0.8125rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-sidebar__block {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
}
.contact-sidebar__block h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-sidebar__block p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
}

.error-page {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  padding: 64px 0;
}
.error-page__code {
  font-family: "Playfair Display", serif;
  font-size: 7.5rem;
  font-weight: 700;
  color: #52B788;
  line-height: 1;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .error-page__code {
    font-size: 11.25rem;
  }
}
.error-page__title {
  margin-bottom: 16px;
}
.error-page__text {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-page .search-bar {
  max-width: 400px;
  margin: 0 auto 48px;
}
.error-page__suggestions {
  margin-top: 48px;
}
.error-page__suggestions h2 {
  margin-bottom: 32px;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAF5;
  padding: 16px;
}
.admin-login__card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 48px;
  width: 100%;
  max-width: 400px;
}
.admin-login__logo {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login__logo .logo {
  justify-content: center;
  font-size: 1.5rem;
}
.admin-login__logo-sub {
  font-size: 0.8125rem;
  color: #6B7280;
  margin-top: 4px;
}
.admin-login__group {
  margin-bottom: 16px;
}
.admin-login__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.admin-login__group input {
  width: 100%;
  padding: 0.625rem 16px;
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 4px;
  font-size: 0.875rem;
}
.admin-login__group input:focus {
  outline: none;
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.admin-login__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.8125rem;
}
.admin-login__forgot {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: #6B7280;
}

.admin-sidebar-toggle {
  display: none;
}

.admin {
  display: flex;
  min-height: 100vh;
}

.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 499;
  cursor: pointer;
}

.admin-sidebar-toggle:checked ~ .admin .admin-overlay {
  display: block;
}
@media (min-width: 1024px) {
  .admin-sidebar-toggle:checked ~ .admin .admin-overlay {
    display: none;
  }
}

.admin-sidebar {
  width: 250px;
  background: #1B4332;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 250ms ease;
}
@media (min-width: 1024px) {
  .admin-sidebar {
    transform: translateX(0);
  }
}
.admin-sidebar__logo {
  padding: 16px;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-sidebar__logo:hover {
  text-decoration: none;
}
.admin-sidebar__nav {
  flex: 1;
  padding: 8px 0;
}
.admin-sidebar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.625rem 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 150ms ease;
}
.admin-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  text-decoration: none;
}
.admin-sidebar__item--active {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}
.admin-sidebar__item-icon {
  width: 20px;
  text-align: center;
}
.admin-sidebar__separator {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}
.admin-sidebar__bottom {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-toggle:checked ~ .admin .admin-sidebar {
  transform: translateX(0);
}

@media (max-width: 1023px) {
  .admin-sidebar-toggle:checked ~ .admin {
    overflow: hidden;
    height: 100vh;
  }
}

.admin-main {
  flex: 1;
  margin-left: 0;
  min-width: 0;
}
@media (min-width: 1024px) {
  .admin-main {
    margin-left: 250px;
  }
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 1024px) {
  .admin-topbar {
    padding: 0 32px;
  }
}
.admin-topbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .admin-topbar__burger {
    display: none;
  }
}
.admin-topbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1B4332;
  border-radius: 1px;
  transition: all 150ms ease;
}
.admin-topbar__title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: #1B4332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
@media (min-width: 768px) {
  .admin-topbar__title {
    font-size: 1.25rem;
  }
}
.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .admin-topbar__actions {
    gap: 16px;
  }
}
.admin-topbar__user {
  font-size: 0.875rem;
  color: #6B7280;
  display: none;
}
@media (min-width: 576px) {
  .admin-topbar__user {
    display: inline;
  }
}

.admin-sidebar-toggle:checked ~ .admin .admin-topbar__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.admin-sidebar-toggle:checked ~ .admin .admin-topbar__burger span:nth-child(2) {
  opacity: 0;
}
.admin-sidebar-toggle:checked ~ .admin .admin-topbar__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.admin-content {
  padding: 16px;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .admin-content {
    padding: 32px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-align: center;
}
.stats-card__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.stats-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1B4332;
  line-height: 1.2;
}
.stats-card__label {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 4px;
}

.chart-box {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 32px;
  margin-bottom: 32px;
}
.chart-box__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 150px;
}
.bar-chart__bar {
  flex: 1;
  background: #52B788;
  border-radius: 2px 2px 0 0;
  min-width: 6px;
  transition: background 150ms ease;
}
.bar-chart__bar:hover {
  background: #2D6A4F;
}
.bar-chart__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.6875rem;
  color: #6B7280;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.admin-table {
  width: 100%;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.admin-table th,
.admin-table td {
  padding: 0.625rem 16px;
  text-align: left;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
  vertical-align: middle;
}
.admin-table th {
  background: #FAFAF5;
  font-weight: 600;
  color: #2B2B2B;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.admin-table tr:hover td {
  background: rgba(45, 106, 79, 0.02);
}
.admin-table__actions {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
}
.admin-table__actions a {
  color: #2D6A4F;
  text-decoration: none;
}
.admin-table__actions a:hover {
  text-decoration: underline;
}
.admin-table__actions a--danger {
  color: #dc2626;
}
.admin-table__img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}
.admin-table__row--alert {
  background: rgba(239, 68, 68, 0.03);
}
.admin-table__row--dead {
  background: rgba(239, 68, 68, 0.05);
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: flex-end;
}
.admin-filters input,
.admin-filters select {
  padding: 0.5rem 16px;
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 4px;
  font-size: 0.8125rem;
  background: #FFFFFF;
  min-width: 150px;
}
.admin-filters input:focus,
.admin-filters select:focus {
  outline: none;
  border-color: #2D6A4F;
}

.bulk-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
}
.bulk-actions label {
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
}
.badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.badge--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.badge--gray {
  background: rgba(107, 114, 128, 0.1);
  color: #6B7280;
}
.badge--orange {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.badge--red {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.badge--yellow {
  background: rgba(234, 179, 8, 0.1);
  color: #a16207;
}
.badge--primary {
  background: rgba(45, 106, 79, 0.1);
  color: #2D6A4F;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
}
.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot--ok::before {
  background: #22c55e;
}
.status-dot--inactive::before {
  background: #f59e0b;
}
.status-dot--dead::before {
  background: #ef4444;
}

.admin-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .admin-card {
    padding: 32px;
  }
}
.admin-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .admin-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }
}

.admin-form__group {
  margin-bottom: 16px;
}
.admin-form__group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2B2B2B;
}
.admin-form__group input[type=text],
.admin-form__group input[type=email],
.admin-form__group input[type=password],
.admin-form__group input[type=number],
.admin-form__group input[type=url],
.admin-form__group input[type=date],
.admin-form__group select,
.admin-form__group textarea {
  width: 100%;
  padding: 0.5rem 16px;
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 4px;
  font-size: 0.8125rem;
  background: #FFFFFF;
}
.admin-form__group input[type=text]:focus,
.admin-form__group input[type=email]:focus,
.admin-form__group input[type=password]:focus,
.admin-form__group input[type=number]:focus,
.admin-form__group input[type=url]:focus,
.admin-form__group input[type=date]:focus,
.admin-form__group select:focus,
.admin-form__group textarea:focus {
  outline: none;
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.admin-form__group textarea {
  min-height: 100px;
  resize: vertical;
}
.admin-form__group--disabled input {
  background: #FAFAF5;
  color: #6B7280;
}
.admin-form__hint {
  font-size: 0.6875rem;
  color: #6B7280;
  margin-top: 4px;
}
.admin-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-form__row .admin-form__group {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 575px) {
  .admin-form__row .admin-form__group {
    flex-basis: 100%;
    min-width: 0;
  }
}

.admin-tabs {
  display: flex;
  border-bottom: 2px solid rgba(107, 114, 128, 0.15);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.admin-tabs__item {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}
.admin-tabs__item:hover {
  color: #2D6A4F;
  text-decoration: none;
}
.admin-tabs__item--active {
  color: #2D6A4F;
  border-bottom-color: #2D6A4F;
}

.upload-zone {
  border: 2px dashed rgba(107, 114, 128, 0.3);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  background: #FAFAF5;
  margin-bottom: 32px;
  transition: border-color 150ms ease;
}
.upload-zone:hover {
  border-color: #2D6A4F;
}
.upload-zone__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.upload-zone__text {
  font-size: 0.875rem;
  color: #2B2B2B;
  margin-bottom: 4px;
}
.upload-zone__hint {
  font-size: 0.75rem;
  color: #6B7280;
}

.image-placeholder {
  position: relative;
  border: 1px dashed rgba(107, 114, 128, 0.3);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.image-placeholder img {
  width: 100%;
  height: auto;
}

.editor-mock {
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 8px;
  overflow: hidden;
}
.editor-mock__toolbar {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: #FAFAF5;
  border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}
.editor-mock__toolbar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2B2B2B;
  cursor: pointer;
}
.editor-mock__toolbar span:hover {
  background: rgba(107, 114, 128, 0.1);
}
.editor-mock__content {
  padding: 16px;
  min-height: 300px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.settings-section {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 32px;
  margin-bottom: 32px;
}
.settings-section__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}

.categories-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .categories-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.category-tree__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 150ms ease;
}
.category-tree__item:hover {
  background: rgba(107, 114, 128, 0.05);
}
.category-tree__item--active {
  background: rgba(45, 106, 79, 0.06);
}
.category-tree__item--child {
  padding-left: 48px;
}
.category-tree__grip {
  color: #6B7280;
  cursor: grab;
}
.category-tree__name {
  flex: 1;
  font-weight: 500;
}
.category-tree__count {
  font-size: 0.75rem;
  color: #6B7280;
}
.category-tree__actions {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
}
.category-tree__actions a {
  color: #6B7280;
}
.category-tree__actions a:hover {
  color: #2D6A4F;
}
.category-tree__actions a--danger:hover {
  color: #dc2626;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 576px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .media-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.media-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 150ms ease;
}
.media-item:hover {
  border-color: rgba(45, 106, 79, 0.3);
}
.media-item--selected {
  border-color: #2D6A4F;
}
.media-item__image {
  aspect-ratio: 1;
}
.media-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 150ms ease;
}
.media-item:hover .media-item__overlay {
  opacity: 1;
}
.media-item__meta {
  padding: 4px 8px;
  font-size: 0.6875rem;
  color: #6B7280;
}
.media-item__meta-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-layout {
  display: flex;
  gap: 32px;
}

.media-main {
  flex: 1;
}

.media-detail {
  width: 300px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: none;
}
@media (min-width: 1024px) {
  .media-detail {
    display: block;
  }
}
.media-detail__preview {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.media-detail__preview img {
  width: 100%;
  height: auto;
}
.media-detail__info {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 16px;
}
.media-detail__info dt {
  font-weight: 600;
  color: #2B2B2B;
}
.media-detail__info dd {
  margin-bottom: 8px;
}

.period-selector {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.period-pill {
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(107, 114, 128, 0.2);
  color: #2B2B2B;
  cursor: pointer;
  background: #FFFFFF;
  transition: all 150ms ease;
}
.period-pill:hover {
  border-color: #2D6A4F;
  color: #2D6A4F;
}
.period-pill--active {
  background: #2D6A4F;
  color: #FFFFFF;
  border-color: #2D6A4F;
}

.horizontal-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.horizontal-bars__item-label {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}
.horizontal-bars__item-bar {
  height: 24px;
  border-radius: 4px;
  background: #52B788;
  transition: width 250ms ease;
}

/*# sourceMappingURL=styles.css.map */
