* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial;
}

body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

.largebox {
  width: 100%;
  height: 342px;
  background-image: url("/static/images/cover.jpg");
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: end;
}

.largebox__title {
  color: #fff;
  font-size: 46px;
  text-align: center;
  margin-bottom: 25px;
}

/* CONTENT */
.content {
  max-width: 1320px;
  margin: 25px auto;
}

/* CATEGORIES */
.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}

.categoryButton {
  padding: 11px 24px;
  border: 2px solid #c89b57;
  border-radius: 999px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.categoryButton:hover {
  background: #c89b57;
  color: white;
}

.active {
  background: #c89b57;
  color: white;
}

/* LINE */
.line {
  width: 100%;
  height: 1px;
  background: #d7d7d7;
  margin-bottom: 60px;
}

/* GRID */
.productsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.card {
  background: #fff;
  border: 3px solid #edecec;
  border-radius: 28px;
  padding: 30px 24px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  border-color: #002366;
  transform: translateY(-5px);
}

.cardTitle {
  font-size: 20px;
  margin-bottom: 24px;
}

.imageWrapper {
  width: 100%;
}

.cardImage {
  width: 100%;
  max-width: 300px;
  height: 290px;
  object-fit: contain;
}

.price {
  margin: 20px 0 28px;
  border: 2px solid #c89b57;
  border-radius: 999px;
  padding: 11px 20px;
  color: #c89b57;
  font-size: 20px;
}

.price:hover {
  background: #c89b57;
  color: white;
  cursor: pointer;
}

.catalogButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 56px;
  border-radius: 999px;
  background: #f5b800;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.catalogButton:hover {
  transform: translateY(-2px);
}

.noCatalog {
  color: #8d8d8d;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .productsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .productsGrid {
    grid-template-columns: 1fr;
  }

  .largebox__title {
    font-size: 32px;
  }
}