@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

footer {
  background-color: #006a42;
}
footer a {
  color: #000;
  text-decoration: none;
}
footer ul {
  list-style: none;
}

/* Сброс отступов для admin-bar */
body.admin-bar {
  margin-top: 0 !important;
}

#wpadminbar {
  position: fixed !important;
  z-index: 999999 !important;
}

/* Sticky хедер - ВСЕГДА ВИДИМ */
.site-header.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  /* Исправление для админ-панели на десктопе */
}
.admin-bar .site-header.sticky-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header.sticky-header {
    top: 46px !important;
  }
}

/* Основной контейнер хедера */
.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Логотип */
.header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

/* Основная навигация */
.main-navigation {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.main-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.3s, padding 0.3s;
  transition: color 0.3s, padding 0.3s;
  padding: 5px 0;
  position: relative;
}
.main-menu a:hover {
  color: #006a42;
}
.main-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #006a42;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.main-menu a:hover:after {
  width: 100%;
}

/* Правая часть хедера */
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* Поиск для десктопа */
.search-container.desktop-search {
  position: relative;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.search-toggle:hover {
  background-color: rgba(0, 106, 66, 0.1);
}

.search-form-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  padding-top: 15px;
  z-index: 10001;
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}
.search-form-wrapper.show {
  display: block;
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Контакты для десктопа */
.header-contacts {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.contact-phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.contact-phone a {
  color: #006a42;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contact-phone a:hover {
  color: #004d30;
}

.contact-address {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  max-width: 200px;
}

/* Бургер-меню */
.burger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: #006a42;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.burger-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(1px, -2px);
          transform: rotate(45deg) translate(1px, -2px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(1px, 2px);
          transform: rotate(-45deg) translate(1px, 2px);
}

/* Мобильное меню */
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: block !important;
  /* Учет админ-панели в мобильном меню */
}
.admin-bar .mobile-menu-wrapper {
  top: 32px;
  height: calc(100vh - 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .mobile-menu-wrapper {
    top: 46px;
    height: calc(100vh - 46px);
  }
}
.mobile-menu-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-wrapper.active .mobile-menu-container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-menu-wrapper.active .mobile-menu li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-menu-wrapper.active .mobile-search {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-menu-wrapper.active .mobile-contacts {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background: #fff;
  padding: 60px 25px 30px 25px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Кнопка закрытия мобильного меню */
.close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000001;
}
.close-mobile-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #333;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.close-mobile-menu span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.close-mobile-menu span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.close-mobile-menu:hover span {
  background: #006a42;
}

/* Мобильное меню */
.mobile-menu {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: block;
  width: 100%;
}
.mobile-menu li {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.mobile-menu li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.mobile-menu li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.mobile-menu li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.mobile-menu li:nth-child(4) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.mobile-menu li:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.mobile-menu li:nth-child(6) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.mobile-menu a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-menu a:hover {
  color: #006a42;
}

/* Поиск в мобильном меню */
.mobile-search {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: opacity 0.3s 0.4s, -webkit-transform 0.3s 0.4s;
  transition: opacity 0.3s 0.4s, -webkit-transform 0.3s 0.4s;
  transition: opacity 0.3s 0.4s, transform 0.3s 0.4s;
  transition: opacity 0.3s 0.4s, transform 0.3s 0.4s, -webkit-transform 0.3s 0.4s;
  width: 100%;
}
.mobile-search .wpdreams_ajaxsearchlite {
  width: 100% !important;
  display: block !important;
}
.mobile-search .wpdreams_ajaxsearchlite input[type=text] {
  width: 100% !important;
  padding: 12px 15px !important;
  font-size: 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  display: block !important;
}

/* Контакты в мобильном меню */
.mobile-contacts {
  padding-top: 20px;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: opacity 0.3s 0.45s, -webkit-transform 0.3s 0.45s;
  transition: opacity 0.3s 0.45s, -webkit-transform 0.3s 0.45s;
  transition: opacity 0.3s 0.45s, transform 0.3s 0.45s;
  transition: opacity 0.3s 0.45s, transform 0.3s 0.45s, -webkit-transform 0.3s 0.45s;
  width: 100%;
  margin-top: auto;
}

.mobile-phone {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  width: 100%;
}
.mobile-phone a {
  color: #006a42;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  width: 100%;
  white-space: normal;
}

.mobile-address {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  width: 100%;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .header-container {
    padding: 12px 15px;
  }
  .logo-img {
    height: 45px;
  }
  .main-menu {
    gap: 20px;
  }
  .main-menu a {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .site-header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 10000;
  }
  .admin-bar .site-header.sticky-header {
    top: 46px;
  }
  .main-navigation {
    display: none;
  }
  .header-contacts {
    display: none;
  }
  .search-container.desktop-search {
    display: none;
  }
  .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 10001;
  }
  .header-right {
    gap: 20px;
  }
  /* Телефон в мобильном хедере */
  .mobile-header-phone {
    display: block;
    margin-right: 15px;
  }
  .mobile-header-phone a {
    color: #006a42;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }
  .logo-img {
    height: 40px;
  }
  .burger-menu {
    width: 26px;
    height: 20px;
  }
  .mobile-menu-container {
    width: 90%;
    padding: 60px 20px 30px;
  }
  .mobile-phone {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 8px 12px;
  }
  .logo-img {
    height: 35px;
  }
  .burger-menu {
    width: 24px;
    height: 18px;
  }
  .mobile-menu-container {
    width: 100%;
    padding: 60px 15px 30px;
  }
  .mobile-menu a {
    font-size: 16px;
    padding: 10px 0;
  }
  .mobile-phone {
    font-size: 18px;
  }
}
/* Отключение скролла при открытом меню */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Убираем все эффекты скрытия хедера при скролле */
.site-header.sticky-header.hide-header, .site-header.sticky-header.show-header {
  -webkit-transform: none !important;
          transform: none !important;
}

.catalog-page,
.category-page,
.single-equipment-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.breadcrumbs {
  padding: 30px 0 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #e9ecef;
}
.breadcrumbs a {
  color: #0073aa;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  color: #005a87;
}
.breadcrumbs span {
  color: #333;
  font-weight: 600;
}

.catalog-header,
.category-header {
  margin-bottom: 40px;
}

.catalog-title,
.category-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.catalog-description,
.category-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.catalog-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 40px 1fr;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .catalog-layout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.catalog-sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-section {
  margin-bottom: 40px;
}
.filter-section:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0073aa;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-item {
  margin-bottom: 10px;
}
.filter-item:last-child {
  margin-bottom: 0;
}

.filter-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-link:hover, .filter-item.active .filter-link {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

.filter-count {
  font-size: 12px;
  color: #6c757d;
}
.filter-item.active .filter-count {
  color: #fff;
}

.filter-select {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-select:focus {
  outline: none;
  border-color: #0073aa;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-reset {
  width: 100%;
  padding: 10px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-reset:hover {
  background: #5a6268;
}

.equipment-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .equipment-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .equipment-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.equipment-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform box-shadow 0.3s ease;
  transition: -webkit-transform box-shadow 0.3s ease;
  transition: transform box-shadow 0.3s ease;
  transition: transform box-shadow 0.3s ease, -webkit-transform box-shadow 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.equipment-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.equipment-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.equipment-thumbnail,
.equipment-thumbnail-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.equipment-card:hover .equipment-thumbnail,
.equipment-card:hover .equipment-thumbnail-placeholder img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.equipment-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  color: #fff;
  z-index: 1;
}

.status-new {
  background: #28a745;
}

.status-used {
  background: #ffc107;
  color: #333;
}

.status-order {
  background: #17a2b8;
}

.status-sale {
  background: #dc3545;
}

.equipment-card-content {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.equipment-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.equipment-card-title a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.equipment-card-title a:hover {
  color: #0073aa;
}

.equipment-card-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.equipment-card-meta {
  margin-bottom: 20px;
}

.equipment-card-price {
  font-size: 24px;
  font-weight: 700;
  color: #28a745;
}

.equipment-card-price-request {
  font-style: italic;
  color: #666;
}

.equipment-card-sku {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.equipment-card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.equipment-card-actions .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-primary {
  background: #0073aa;
  color: #fff;
}
.button-primary:hover {
  background: #005a87;
}

.button-secondary {
  background: #6c757d;
  color: #fff;
}
.button-secondary:hover {
  background: #5a6268;
}

.dynamic-blocks-page {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.faq-item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.question__faq {
  padding: 18px 24px;
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1a;
  background: #f8f9fa;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}

.question__faq:hover {
  background: #f0f2f4;
}

.question__faq::after {
  content: "▼";
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  color: #666;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-item.active .question__faq::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.answer__faq.hidden {
  display: block;
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid transparent;
  -webkit-transition: max-height 0.3s linear, padding 0.3s linear, border-color 0.2s;
  transition: max-height 0.3s linear, padding 0.3s linear, border-color 0.2s;
}

.faq-item.active .answer__faq {
  max-height: 500px;
  padding: 20px 24px;
  border-top-color: #e0e0e0;
}

.answer__faq [itemprop=text] {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.answer__faq [itemprop=text] p:first-child {
  margin-top: 0;
}

.answer__faq [itemprop=text] p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .faq-item {
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .question__faq {
    padding: 14px 18px;
    font-size: 16px;
    padding-right: 40px;
  }
  .question__faq::after {
    right: 18px;
    font-size: 12px;
  }
  .faq-item.active .answer__faq {
    padding: 16px 18px;
    max-height: 600px;
  }
  .answer__faq [itemprop=text] {
    font-size: 15px;
  }
}
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0;
  padding: 1rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.card {
  display: block;
}

.card1 {
  background-color: transparent;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
  margin: 1rem;
  max-width: 350px;
  padding: 16px;
}

.ct3y img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.st1z h3 {
  text-align: center;
}