/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #403E3B; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1B1A1A; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1B1A1A; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #1B1A1A;  /* The default color of the main navmenu links */
  --nav-hover-color: #575656; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1B1A1A; /* Used as the background color for mobile navigation menu */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #FFFFFF;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }


  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #FFFFFF;
  background-color: #333333;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #FFFFFF, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #FFFFFF, transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  border-color: #FFFFFF;;
}

.footer h1 {
  font-size:15px;
  font-weight: bold;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;

  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, #FFFFFF, transparent 50%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color:#FFFFFF;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color:color-mix(in srgb, #FFFFFF, transparent 50%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 39px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  line-height: 42px;
}

.section-title h2:before {
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.left-section {
  background-color: #ECE7E4; 
  color: #1B1A1A !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

/* Правая часть */
.right-section {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left:0% !important
}

.right-section img {
  max-width: 100%;
  height: auto;
}


.hero h1 {
  margin: 0;
  text-align: left;
  font-size: 35px;
  font-weight: 400;
  line-height: 39px;
}

.hero p {
  color: #403E3B;
  margin: 15px 0 30px 0;
  text-align: left;

  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: white;
  color:#333333;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
}
.hero .home_zen_logo {
  width: 400px;
  height: 100px;
  margin-left: -45px;
  margin-bottom: 1.3rem;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top:8rem;
}

.about h2 {
  padding: 8px 30vh;
  font-size: 32px;
  font-weight: 400;

}

.instagram {
  display: flex;
  align-items: center;
  margin-top: 20px; /* Отступ сверху */
}

.icon-circle {
  width: 85px; /* Диаметр круга */
  height: 85px;
  border-radius: 50%;
  background-color: #333333; /* Цвет круга */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px; /* Отступ справа от круга */
}

.icon-circle img {
  width: 66px; /* Размер иконки */
  height: 18px;
}

.nickname-container {
  display: flex;
  flex-direction: column; /* Расположение текста по вертикали */
  align-items: flex-start; /* Выравнивание текста слева */
}

.instagram-nickname {
  font-size: 16px;
  color: #333; /* Цвет текста */
  font-weight: 400;
}

.instagram-text {
  font-size: 12px; /* Размер текста "Instagram" */
  color: #666; /* Цвет текста "Instagram" */
}

/*--------------------------------------------------------------
# Lid Section
--------------------------------------------------------------*/
#homezen_lid {
  color: #1B1A1A !important;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.lid {
  position: relative; /* Контекст для абсолютного позиционирования */
  background-color: #ECF6F1;
  overflow: hidden; /* Ограничение выхода содержимого */
}

/* Фоновое изображение */
.lid .background-image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: 70%;
  z-index: 1; /* На заднем плане */
  pointer-events: none;
}

/* Контейнер для контента поверх */
.lid .overlay-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #333;
}

/* Первое наложенное изображение */
.lid .mockup-image {
  position: absolute;
  bottom: -206px;
  left: -120px;
  width: 720px;
  height: auto;
  z-index: 2;
}

/* Второе наложенное изображение */
.lid .additional-image {
  position: absolute;
  bottom: -370px;
  left: 960px;
  width: 380px;
  height: auto;
  z-index: 3;
}


/*--------------------------------------------------------------
# Tasks Section
--------------------------------------------------------------*/
/* Общий стиль для контейнеров */
.task-item {
  display: flex;
  flex-direction: column; /* Элементы располагаются вертикально */
  align-items: center; /* Горизонтальное центрирование */
  justify-content: center; /* Вертикальное центрирование */
  text-align: center; /* Текст по центру */
  padding: 20px; /* Отступы внутри контейнера */
  height: 100%; /* Растянуть по высоте родительского контейнера */
}

/* Стиль для изображений */
.task-item .task-image {
  width: 80px; /* Размер изображения */
  height: auto; /* Сохраняем пропорции */
  margin-bottom: 20px; /* Отступ снизу для разделения с текстом */
}

/* Стиль для заголовков */
.task-item h3 {
  font-size: 1.5rem; /* Размер шрифта */
  margin-bottom: 15px; /* Отступ снизу */
  color: #333; /* Цвет текста */
}

/* Стиль для параграфов */
.task-item p {
  font-size: 1rem; /* Размер текста */
  color: #555; /* Более светлый оттенок для текста */
  line-height: 1.5; /* Высота строки для удобства чтения */
}

/*--------------------------------------------------------------
# Filter Section
--------------------------------------------------------------*/
#homezen_filter {
  color: #1B1A1A !important;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.filter {
  position: relative; /* Контекст для абсолютного позиционирования */
  background-color: #ECF6F1;
  overflow: hidden; /* Ограничение выхода содержимого */
}

/* Фоновое изображение */
.filter .background-image img {
  position: absolute;
  bottom: 0;
  right:0;
  width: auto;
  height: 70%;
  z-index: 1; /* На заднем плане */
  pointer-events: none;
}

/* Контейнер для контента поверх */
.filter .overlay-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #333;
}

/* Первое наложенное изображение */
.filter .mockup-image {
  position: absolute;
  bottom: -251px;
  left: 811px;
  width: 401px;
  height: auto;
  z-index: 2;
}

/* Второе наложенное изображение */
.filter .additional-image {
  position: absolute;
  bottom: -370px;
  left: -80px;
  width: 380px;
  height: auto;
  z-index: 3;
}


/*--------------------------------------------------------------
# Marketplaces Section
--------------------------------------------------------------*/

.marketplaces {
  padding-top:8rem;
}

.marketplaces h2 {
  padding: 8px 28px;
  font-size: 32px;
  font-weight: 300;
}

#mrkt_text {
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: 2px;
}

.marketplaces img {
  margin-top:-50px;
  margin-left: 238px;
}


/*--------------------------------------------------------------
# Reviews Section
--------------------------------------------------------------*/

/* Общий стиль секции */
.reviews {
  background-color: #ECE7E4;
  padding: 40px 0;
  text-align: center;
}


.reviews-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Карточка отзыва */
.review-card {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.review-item {
  position: relative; /* Для абсолютного позиционирования аватара */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 350px;
  text-align: center;
  overflow: hidden; /* Чтобы обрезать лишние элементы */
  
  /* Добавлено для выравнивания */
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  height: 100%; /* Заставляем карточку занимать всю доступную высоту */
}

/* Изображения отзывов */
.review-images {
  display: flex;
  justify-content: center;
  gap: 10px; /* Расстояние между изображениями */
  margin-bottom: 30px;
}

.review-images img {
  width: 355px;
  height: auto;
  border-radius: 8px;
}

/* Аватар */
.review-avatar {
  position: absolute;
  top: 266px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 60%;
  overflow: hidden;
  border: 3px solid #fff;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Информация об отзыве */
.review-info {
  margin-top: 0; /* Добавляем отступ, чтобы избежать наложения текста и аватара */
  display: flex;
  flex-direction: column; /* Упорядочиваем элементы вертикально */
  flex-grow: 1; /* Гарантируем, что текст займет оставшееся пространство */
}

.review-name {
  font-size: 1.25rem;
  margin-bottom: 0;
  font-weight: 400;
  color: #403E3B;
}

.review-date {
  font-size: 12px;
  color: #A6A4A0;
}

.review-text {
  font-size: 1rem;
  color: #555;
  line-height: 20px;
  margin-bottom: 23px;
  border-top-width: 6px;
  border-top-style: solid;
  border-color: white;
}

/* Рейтинг */
.review-rating {
  margin-top: auto; /* Выталкиваем блок с рейтингом вниз */
  font-size: 1.25rem;
  color: #f39c12; /* Желтый цвет звезд */
}

.review-rating img {
  width: 120px;
  height: auto;
  margin: 0 auto; /* Центровка изображения звезд */
}

/* Адаптивность */
@media (max-width: 768px) {
  .review-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Goods Section
--------------------------------------------------------------*/
/* Общий стиль секции */
.goods {
  background-color: #F5F5F5;
  padding: 40px 0;
  text-align: center;
}

.goods-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Карточка товара */
.goods-card {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.goods-item {
  border-radius: 12px;
  padding: 20px;
  max-width: 350px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Заставляем карточку занимать всю доступную высоту */
}

/* Изображение товара */
.goods-images {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  background-color: transparent; /* Убираем фон */
}

.goods-images img {
  width: 250px;
  height: auto;
  /* Убираем рамку и добавляем отступы */
  border: none;
  border-radius: 8px;
}

/* Информация о товаре */
.goods-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px; /* Расстояние между элементами */
}

.goods-name {
  font-size: 15px;
  font-weight: 400;
  color: #403E3B;
}

.goods-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333; /* Желтый цвет для цены */
}

/* Стиль для заголовков */
.goods .container h2 {
  font-size: 39px; /* Размер шрифта */
  margin-bottom: 15px; /* Отступ снизу */
  color: #333333; /* Цвет текста */
}

/* Стиль для параграфов */
.goods .container p {
  font-size: 1rem; /* Размер текста */
  color: #403E3B; /* Более светлый оттенок для текста */
  line-height: 1.5; /* Высота строки для удобства чтения */
  margin-bottom: 5px;
}

.btn-order {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin-right: 7rem;
  border-radius: 15px;
  transition: 0.3s;
}

.btn-order:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Адаптивность */
@media (max-width: 768px) {
  .goods-card {
    margin-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
