@charset "UTF-8";

/* Переопределение Bootstrap цветов на зеленые оттенки */
:root {
  --bs-primary: #228B22 !important; /* Темно-зеленый */
  --bs-primary-rgb: 34, 139, 34 !important;
  --bs-secondary: #90EE90 !important; /* Салатовый */
  --bs-secondary-rgb: 144, 238, 144 !important;
  --bs-success: #32CD32 !important; /* Лаймово-зеленый */
  --bs-success-rgb: 50, 205, 50 !important;
  --bs-info: #556B2F !important; /* Темно-оливковый */
  --bs-info-rgb: 85, 107, 47 !important;
  --bs-warning: #FFD700 !important; /* Золотой */
  --bs-warning-rgb: 255, 215, 0 !important;
  --bs-danger: #8B4513 !important; /* Коричневый */
  --bs-danger-rgb: 139, 69, 19 !important;
  --bs-light: #F0FFF0 !important; /* Светло-салатовый */
  --bs-light-rgb: 240, 255, 240 !important;
  --bs-dark: #2F4F2F !important; /* Темно-зеленый */
  --bs-dark-rgb: 47, 79, 47 !important;
}

body {
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #2F4F2F; /* Темно-зеленый цвет для заголовков */
}

legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

label {
  font-size: 12px;
  font-weight: normal;
}

/* Chrome border line */
button:focus {
  outline: none !important;
}

/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}

/* content */
#content, #column-left, #column-right {
  padding-bottom: 730px;
}

@media (min-width: 576px) {
  #content, #column-left, #column-right {
    padding-bottom: 400px;
  }
}
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}

@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}

#alert .alert-primary {
  box-shadow: 0 0 0 5px rgba(34, 139, 34, 0.1); /* Зеленый вместо голубого */
}

#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgba(144, 238, 144, 0.1); /* Салатовый вместо голубого */
}

#alert .alert-success {
  box-shadow: 0 0 0 5px rgba(50, 205, 50, 0.1); /* Лаймово-зеленый */
}

#alert .alert-warning {
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.1); /* Золотой вместо голубого */
}

#alert .alert-danger {
  box-shadow: 0 0 0 5px rgba(139, 69, 19, 0.1); /* Коричневый вместо голубого */
}

#alert .alert-info {
  box-shadow: 0 0 0 5px rgba(85, 107, 47, 0.1); /* Темно-оливковый вместо голубого */
}

#alert .alert-light {
  box-shadow: 0 0 0 5px rgba(240, 255, 240, 0.1); /* Светло-салатовый вместо голубого */
}

#alert .alert-dark {
  box-shadow: 0 0 0 5px rgba(47, 79, 47, 0.1); /* Темно-зеленый вместо голубого */
}

/* top */
#top {
  background-color: #2F4F2F; /* Темно-зеленый цвет как у футера */
  border-bottom: 1px solid #90EE90;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}

#top ul.list-inline {
  margin-bottom: 0;
}

#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: #F0FFF0; /* Светлый цвет для лучшей читаемости на темном фоне */
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
  transition: color 0.3s ease; /* Плавная анимация */
}

#top .list-inline-item > a:hover, #top .list-inline-item .dropdown > a:hover {
  color: #90EE90; /* Салатовый цвет при наведении */
}

/* logo */
#logo {
  text-align: center;
  margin: 0;
}

#logo img {
  max-width: 160px;
}

@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
/* search */
#search {
  margin-bottom: 10px;
}

#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}

#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
  background-color: #228B22; /* Темно-зеленый для органической темы */
  border-color: #228B22;
  color: #fff;
}

#search .btn-lg:hover {
  background-color: #32CD32;
  border-color: #32CD32;
}

/* cart */
#cart {
  margin-bottom: 10px;
}

#cart .img-thumbnail {
  min-width: 100px;
}

#cart .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 14px 35px;
  background-color: #228B22; /* Темно-зеленый для органической темы */
  border-color: #228B22;
  color: #fff;
}

#cart .btn-lg:hover {
  background-color: #32CD32;
  border-color: #32CD32;
}

#cart .dropdown-menu {
  background: #eee;
}

#cart .dropdown-menu li {
  min-width: 300px;
}

@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}
/* menu */
#menu {
  background-color: #32CD32; /* Лаймово-зеленый для органической темы */
  background-image: linear-gradient(to bottom, #32CD32, #228B22);
  background-repeat: repeat-x;
  border: 1px solid #228B22;
  border-color: #228B22 #228B22 #006400;
  min-height: 40px;
  border-radius: 4px;
  padding: 0 1rem;
  margin-bottom: 20px;
}

#menu .navbar-nav > li > a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px 10px 15px;
  background-color: transparent;
}

#menu .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}

#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}

@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}

/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #8B4513; /* Коричневый вместо красного */
  font-weight: bold;
}

/* Замена всех Bootstrap голубых цветов на зеленые */
.btn-primary {
  background-color: #228B22 !important;
  border-color: #228B22 !important;
}

.btn-primary:hover {
  background-color: #32CD32 !important;
  border-color: #32CD32 !important;
}

.btn-secondary {
  background-color: #90EE90 !important;
  border-color: #90EE90 !important;
  color: #2F4F2F !important;
}

.btn-secondary:hover {
  background-color: #32CD32 !important;
  border-color: #32CD32 !important;
  color: #fff !important;
}

.btn-info {
  background-color: #556B2F !important;
  border-color: #556B2F !important;
  color: #fff !important;
}

.btn-info:hover {
  background-color: #6B8E23 !important;
  border-color: #6B8E23 !important;
}

/* Замена цветов для активных элементов */
.list-group-item.active {
  background-color: #228B22 !important;
  border-color: #228B22 !important;
}

.nav-pills .nav-link.active {
  background-color: #228B22 !important;
}

.dropdown-item.active {
  background-color: #228B22 !important;
}

.page-link {
  color: #228B22 !important;
}

.page-item.active .page-link {
  background-color: #228B22 !important;
  border-color: #228B22 !important;
}

.progress-bar {
  background-color: #228B22 !important;
}

.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}

.nav-tabs {
  margin-bottom: 15px;
}

.form-check .form-check-input {
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* footer */
footer {
  border: 1px solid #228B22;
  position: absolute;
  bottom: -1px;
  width: 100%;
  padding-top: 30px;
  background-color: #2F4F2F; /* Темно-зеленый фон для футера */
  border-top: 1px solid #90EE90;
  color: #F0FFF0;
}

footer hr {
  border-top: none;
  border-bottom: 1px solid #90EE90; /* Салатовый цвет для разделителей */
}

footer a {
  color: #90EE90; /* Салатовый цвет для ссылок в футере */
  text-decoration: none;
}

footer a:hover {
  color: #32CD32; /* Лаймово-зеленый при наведении */
}

footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #90EE90; /* Салатовый цвет для заголовков в футере */
  margin-top: 10px;
  margin-bottom: 10px;
}

/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid #90EE90;
  border-radius: var(--bs-border-radius);
  background-color: #F0FFF0; /* Светло-салатовый фон для хлебных крошек */
}
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 29px;
  height: 29px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}

.product-thumb {
  border: 2px solid #90EE90; /* Салатовая рамка для карточек продуктов */
  position: relative;
  height: 100%;
  border-radius: 8px; /* Скругленные углы для более мягкого вида */
  box-shadow: 0 2px 8px rgba(144, 238, 144, 0.2); /* Легкая тень с салатовым оттенком */
}

.product-thumb .image {
  text-align: center;
}

.product-thumb .image a:hover {
  opacity: 0.8;
}

.product-thumb .description {
  padding: 15px;
  margin-bottom: 45px;
}

.product-thumb .description h4 {
  font-weight: bold;
}

.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid #90EE90;
  background-color: #F0FFF0; /* Светло-салатовый фон для кнопок */
  color: #2F4F2F; /* Темно-зеленый текст */
  line-height: 38px;
  text-align: center;
  transition: all 0.3s ease; /* Плавная анимация */
}

.product-thumb .button button:hover {
  color: #fff;
  background-color: #32CD32; /* Лаймово-зеленый при наведении */
  text-decoration: none;
  cursor: pointer;
  transform: translateY(-2px); /* Легкое поднятие кнопки */
}

.product-thumb .button button + button {
  border-left: 1px solid #90EE90; /* Салатовая граница между кнопками */
}

@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
  border-left: 1px solid #90EE90; /* Салатовая граница для списка продуктов */
  width: calc(100% - 15px);
  margin-left: 15px;
}
}
.rating .fa-stack {
  width: 20px;
}

.rating .fa-star {
  color: #999;
  font-size: 15px;
}

.rating .fa-star {
  color: #FFD700; /* Золотой цвет для звезд рейтинга */
  font-size: 15px;
}

.rating .fa-star + .fa-star {
  color: #DAA520; /* Золотисто-коричневый для второй звезды */
}

/* product list */
.price {
  color: #228B22; /* Темно-зеленый цвет для цен */
  font-weight: 600;
}

.price-new {
  font-weight: 600;
  color: #32CD32; /* Лаймово-зеленый для новых цен */
}

.price-old {
  color: #8B4513; /* Коричневый цвет для старых цен (органический) */
  text-decoration: line-through;
}

.price-tax {
  color: #556B2F; /* Темно-оливковый для налогов (органический) */
  font-size: 12px;
  display: block;
}

/* blog */
.blog-thumb {
  border: 2px solid #90EE90; /* Салатовая рамка для блога */
  margin-bottom: 15px;
  border-radius: 8px; /* Скругленные углы */
  box-shadow: 0 2px 8px rgba(144, 238, 144, 0.2); /* Легкая тень */
}

.blog-thumb h4 {
  font-weight: bold;
  color: #2F4F2F; /* Темно-зеленый для заголовков блога */
}

.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}

.blog-thumb .image a:hover {
  opacity: 0.8;
}

.blog-thumb .description {
  padding: 15px;
}

/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}

#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
li[aria-level="1"]::marker {
  font-weight: bold;
}
/* Дополнительные стили для замены всех голубых цветов */
.navbar-nav .nav-link.active {
  background-color: #228B22 !important;
  color: #fff !important;
}

.navbar-nav .nav-link:hover {
  background-color: #32CD32 !important;
  color: #fff !important;
}

.dropdown-menu {
  border-color: #90EE90 !important;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #F0FFF0 !important;
  color: #2F4F2F !important;
}

.badge-primary {
  background-color: #228B22 !important;
}

.badge-secondary {
  background-color: #90EE90 !important;
  color: #2F4F2F !important;
}

.badge-success {
  background-color: #32CD32 !important;
}

.badge-info {
  background-color: #556B2F !important;
}

.badge-warning {
  background-color: #FFD700 !important;
  color: #2F4F2F !important;
}

.badge-danger {
  background-color: #8B4513 !important;
}

/* Замена цветов для форм */
.form-control:focus {
  border-color: #90EE90 !important;
  box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.25) !important;
}

.form-select:focus {
  border-color: #90EE90 !important;
  box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.25) !important;
}

/* Замена цветов для таблиц */
.table-primary {
  background-color: rgba(34, 139, 34, 0.1) !important;
}

.table-secondary {
  background-color: rgba(144, 238, 144, 0.1) !important;
}

.table-success {
  background-color: rgba(50, 205, 50, 0.1) !important;
}

.table-info {
  background-color: rgba(85, 107, 47, 0.1) !important;
}

.table-warning {
  background-color: rgba(255, 215, 0, 0.1) !important;
}

.table-danger {
  background-color: rgba(139, 69, 19, 0.1) !important;
}

/* Новое меню и соцсети */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center; /* Центрируем иконки */
  margin-top: -10px; /* Уменьшаем расстояние между поиском и соцсетями */
}

/* Фиксированная ширина для левой колонки с логотипом */
.col-md-3.col-lg-4:first-child {
  width: 200px !important;
  flex: 0 0 200px !important;
  max-width: 200px !important;
}

/* Адаптивность для левой колонки */
@media (max-width: 768px) {
  .col-md-3.col-lg-4:first-child {
    width: 150px !important;
    flex: 0 0 150px !important;
    max-width: 150px !important;
  }
}

.social-links a {
  font-size: 30px;
  margin: 0 20px;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  transform: scale(1.1);
  text-decoration: none;
}

/* Оригинальные цвета соцсетей */
.social-links a:nth-child(1) { color: #E4405F; } /* Instagram */
.social-links a:nth-child(2) { color: #1877F2; } /* Facebook */
.social-links a:nth-child(3) { color: #006AFF; } /* Messenger */
.social-links a:nth-child(4) { color: #0088CC; } /* Telegram */
.social-links a:nth-child(5) { color: #665CAC; } /* Viber */
.social-links a:nth-child(6) { color: #25D366; } /* WhatsApp */

/* Красивое выпадающее меню */
.mega-menu {
  min-width: 250px;
  max-width: 400px;
  padding: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
  margin-top: 5px;
}

/* Убираем сужение меню из-за container */
.menu.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mega-menu .row {
  margin: 0;
  display: block;
}

.mega-menu .col-md-3 {
  padding: 0;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.mega-menu .col-md-3:last-child {
  border-bottom: none;
}

.mega-menu .dropdown-header {
  background: #f8f9fa;
  color: #2F4F2F;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  border-radius: 8px 8px 0 0;
}

.mega-menu .dropdown-header a {
  color: #2F4F2F;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.mega-menu .dropdown-header a:hover {
  color: #228B22;
  text-decoration: none;
  transform: translateX(3px);
}

.mega-menu .dropdown-item {
  padding: 10px 16px;
  color: #495057;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-size: 14px;
}

.mega-menu .dropdown-item:hover {
  color: #228B22;
  background: #f8f9fa;
  border-left-color: #228B22;
  text-decoration: none;
  transform: translateX(3px);
}

.mega-menu .dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

/* Стили для выпадающего меню */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 250px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Возвращаем стандартные стили Bootstrap для навигации */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px !important;
  font-size: 16px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 1);
}

.navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-nav .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .social-links {
    display: none;
  }
  
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
  }
  
  .mega-menu .row {
    flex-direction: column;
  }
  
  .mega-menu .col-md-3 {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Красивый блок блога */
.blog-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 2rem 0;
}

.blog-title {
  color: #2F4F2F;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.blog-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #228B22, #32CD32);
  border-radius: 2px;
}

.blog-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 139, 34, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: translateX(-10px);
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-overlay i {
  transform: translateX(0);
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  margin-bottom: 1rem;
}

.blog-card-title a {
  color: #2F4F2F;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #228B22;
}

.blog-card-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  margin-top: auto;
}

.blog-read-more {
  color: #228B22;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-read-more:hover {
  color: #32CD32;
  transform: translateX(5px);
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(3px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-card-image {
    height: 200px;
  }
  
  .blog-card-content {
    padding: 1rem;
  }
}

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