:root {
  --primary-color: #806248;
  --primary-dark: #806248;
  --gray: #fafafa;
  --light-gray: #e5e5e5;
  --light-gray-2: #f6f7f9;
  --medium-gray: #777777;
  --black-shade: #1e1e1e;
  --dark-black: #313131;
}

.banner-sec {
  width: 100%;
  position: relative;
  height: 70vh;
  z-index: 0;
}

.banner-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  background-color: var(--primary-dark);
  width: fit-content;
  margin: auto;
  padding: 6px 20px;
  border-radius: 10px;
  border: 1px solid white;
  margin-bottom: 52px;
}

.catalog-box {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.banner-content h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  background-color: var(--primary-dark);
  width: fit-content;
  padding: 6px 0px;
  width: 300px;
  border-radius: 10px;
  border: 1px solid white;
}

.arrow-img {
  max-width: 120px;
}

@media (max-width: 1200px) {
  .banner-sec {
    height: 50vh;
  }
  .banner-content {
    width: 90%;
  }
  .banner-content h2 {
    font-size: 28px;
    padding: 6px 16px;
  }

  .banner-content h3 {
    font-size: 18px;
    width: 260px;
  }

  .arrow-img {
    max-width: 100px;
  }
}

@media (max-width: 1024px) {
  .banner-content {
    width: 90%;
  }

  .catalog-box {
    gap: 14px;
  }

  .banner-content h3 {
    width: 100%;
    font-size: 14px;
  }

  .arrow-img {
    max-width: 80px;
  }
}

@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 24px;
    padding: 4px 12px;
    margin-bottom: 32px;
  }

  .catalog-box {
    gap: 12px;
  }

  .banner-content h3 {
    width: 100%;
    font-size: 12px;
    padding: 6px 0;
  }

  .arrow-img {
    max-width: 60px;
  }
}

@media (max-width: 640px) {
  .banner-sec {
    height: 30vh;
  }
  .banner-content {
    width: 90%;
  }

  .catalog-box {
    gap: 2px;
  }

  .banner-content h2 {
    font-size: 16px;
  }

  .banner-content h3 {
    font-size: 7px;
    padding: 4px 2px;
  }
}

@media (max-width: 480px) {
  .arrow-img {
    max-width: 28px;
  }
}

/* catalog-maker  */

.catalog-maker {
  margin: 44px 0px;
}

.catalog-maker-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-maker-buttons {
  display: flex;
  gap: 20px;
}

.new-tils-box {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.new-tils-box .products {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.new-tils-content {
  position: relative;
  display: inline-block;
}

.new-tils-content img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.add-button {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: rgba(137, 92, 37, 0.74);
  color: white;
  border: none;
  font-size: 14px;
  padding: 8px 0px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.new-tils-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0px;
}

.new-tils-box .body-text span {
  color: var(--black-shade);
  font-weight: 600;
  margin-left: 5px;
}

@media screen and (max-width: 940px) {
  .new-tils-box {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .new-tils-box .products {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

  
}

@media screen and (max-width: 768px) {
  .new-tils-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .new-tils-box .products {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

}

@media screen and (max-width: 640px) {
  .catalog-maker-box {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .new-tils-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .new-tils-box .products {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

}

