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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}


.center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 0;
}

header .center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

nav a:hover {
  text-decoration: underline;
}


.hero {
  position: relative;
  height: 460px;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #9aaa97;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  width: 100%;
}

.hero-content .center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 600;
  color: #ffffff;
  line-height: 70px;
  margin-bottom: 12px;
}


.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
}

/
.hero-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: underline;
}

.hero-link:hover {
  opacity: 0.8;
}

.catalog {
  padding: 44px 0 56px;
}

.catalog h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 200px;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #d8d0c8 0%, #c4b49a 100%);
}


.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #1a1a1a;
}


.product-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 8px;
}


.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
}


footer {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
}
