@font-face {
  font-family: 'Segoe UI';
  src: local('Segoe UI Bold'), local('SegoeUI-Bold');
  font-weight: bold;
}

@font-face {
  font-family: 'Segoe UI';
  src: local('Segoe UI'), local('SegoeUI');
  font-weight: normal;
}

:root {
  --accent: #904d30;
  --gray: #6d6552;
  --bg: #fff9f5;
  --text: #3e2723;
  --shadow: 0 4px 12px rgba(0,0,0,0.05);
  --transition: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: normal;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, .nav__link, .btn, .stats__number,
.product-card__title, .review-card__name, .footer h4 {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: white;
}

.btn--primary:hover { background: #7a3f26; }

.btn--secondary {
  background: white;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--secondary:hover {
  background: var(--accent);
  color: white;
}

.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__circle {
  width: 50px;
  height: 50px;
  background: orange;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.nav__list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.nav__link:hover,
.nav__link--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
}

.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg), #f5ebe4);
}

.hero__title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero__subtitle {
  font-size: 24px;
  color: var(--gray);
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: normal;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stats__item { text-align: center; }

.stats__number {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: var(--accent);
}

.stats__text {
  color: var(--gray);
  font-weight: normal;
}

.about {
  padding: 60px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about__image img {
  width: 100%;
  border-radius: 20px;
}

.about__content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about__content p {
  font-size: 18px;
  color: var(--gray);
  font-weight: normal;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-title {
  font-size: 40px;
  margin: 30px 0 10px;
  font-weight: bold;
}

.page-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: normal;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card__image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card__title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: bold;
}

.product-card__weight {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: normal;
}

.product-card__price {
  font-weight: bold;
  color: var(--accent);
  margin: 10px 0;
  font-size: 18px;
}

.reviews {
  padding: 60px 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.review-card__avatar {
  font-size: 48px;
  margin-bottom: 15px;
}

.review-card__name {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.review-card__rating {
  color: gold;
  font-size: 24px;
  margin-bottom: 15px;
}

.review-card__text {
  color: var(--gray);
  font-style: italic;
  font-weight: normal;
}

.benefits {
  padding: 60px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.benefit__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit h3 {
  font-weight: bold;
}

.footer {
  background: var(--text);
  padding: 60px 0 30px;
  margin-top: 50px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: white;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer p, .footer a {
  color: var(--gray);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  font-weight: normal;
}

.footer a:hover { color: white; }

.footer__copy {
  text-align: center;
  color: var(--gray);
  padding-top: 20px;
  border-top: 1px solid #5a4a3e;
  font-weight: normal;
}

@media (max-width: 992px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__list {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .nav__list.active { display: flex; }
  .nav__toggle { display: flex; }
  
  .products__grid, .reviews__grid, .benefits__grid, .footer__grid,
  .about__grid { grid-template-columns: 1fr; }
  
  .hero__title { font-size: 36px; }
  .hero__subtitle { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .stats { flex-direction: column; align-items: center; }
  .btn { width: 100%; }
}