* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c4155;
}

.header__slogan {
  font-size: 1rem;
  color: #666;
}

.header__banner {
  width: 150px;
  height: auto;
}

.header__nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.header__nav-link:hover {
  background-color: #e8f5e9;
  color: #2c5530;
  transform: translateY(-2px);
}

.main {
  padding: 2rem;
}

.section {
  padding: 2rem 0;
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5530;
  text-align: center;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.feature__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #26635b;
  margin-bottom: 0.5rem;
}

.feature__text {
  font-size: 0.9rem;
  color: #555;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}

.product:hover {
  transform: translateY(-5px);
}

.product__image {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
}

.product__price {
  font-size: 1rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.product__name {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.product__button {
  background-color: #2c5530;
  color: white;
  border: none;
  padding: 1rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product__button:hover {
  background-color: #1e3a22;
  transform: scale(1.05);
}


.gift {
  text-align: center;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  max-width: 400px;
  margin: 2rem auto;
}

.gift__image {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
}

.gift__name {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.gift__button {
  background-color: #2c5530;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gift__button:hover {
  background-color: #1e3a22;
  transform: scale(1.05);
}

.combo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.combo-item {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.combo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.combo-item__image {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 4px;
}

.combo-item__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.combo-item__name {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.combo-item__button {
  background-color: #2c5530;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.combo-item__button:hover {
  background-color: #1e3a22;
  transform: scale(1.05);
}


.footer {
  text-align: center;
  padding: 1rem;
  background-color: #2c5530;
  color: white;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .header__brand {
    justify-content: center;
  }

  .header__banner {
    width: 120px;
  }
}


@media (max-width: 767px) {
  .main {
    padding: 1rem;
  }

  .section {
    padding: 1.5rem 1rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .product,
  .combo-item,
  .feature {
    padding: 1rem;
  }
}


@media (max-width: 480px) {
  .header__logo {
    font-size: 1.4rem;
  }

  .header__slogan {
    font-size: 0.9rem;
  }

  .header__banner {
    width: 100px;
  }

  .product__button,
  .combo-item__button,
  .gift__button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}
/* Feedback при нажатии */
.product__button:active,
.combo-item__button:active,
.gift__button:active {
    transform: scale(0.95);
}

.feature:active,
.product:active,
.combo-item:active {
    transform: scale(0.98);
}