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

html,
body {
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.main-container {
  max-width: 1310px;
  padding-inline: 15px;
  margin-inline: auto;
}

.products-section {
  padding-block: 60px 80px;
}
@media (max-width: 991px) {
  .products-section {
    padding-block: 40px 30px;
  }
}
@media (max-width: 575px) {
  .products-section {
    padding-block: 30px 20px;
  }
}

.section-title {
  color: #505f47;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  padding-bottom: 35px;
  margin-bottom: 66px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
    line-height: 36px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}
.section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 6px;
  background-color: rgb(190, 185, 50);
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  padding-top: 1rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #cdcdcd;
  border-radius: 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card .card-img-wrapper {
  padding: 16px 32px;
}
.product-card .card-img-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
}
.product-card .dollar-tag {
  position: absolute;
  right: 0;
  top: 1.5rem;
  display: block;
  background-color: rgba(190, 185, 50, 0.5019607843);
  color: rgba(77, 77, 77, 0.6901960784);
  padding: 0.125rem;
  padding-left: 0.5rem;
  width: 80px;
  text-align: center;
  border-radius: 20px 0 0 20px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
.product-card .card-title {
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.product-card .product-features {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-card .product-features li {
  display: flex;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #696b72;
}
.product-card .product-features li .unavailable {
  color: #aeaeae;
}
.product-card .product-features li sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}
.product-card .list-item-marker {
  min-width: 20px;
  height: 20px;
  background-color: #cbcbcb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-weight: 700;
}
.product-card .list-item-marker.tick {
  background-color: #beb932;
}
@media (max-width: 1399px) {
  .product-card .button {
    width: 100%;
    padding: 10px;
  }
}
.product-card .card-action {
  margin-top: auto;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  background-color: rgb(190, 185, 50);
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #a8a12f;
}

.navbar {
  background-color: #505f47;
  padding: 15px 60px;
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media (max-width: 991px) {
  .navbar {
    padding: 15px 16px;
  }
}
.navbar .logo {
  width: 202px;
}
@media (max-width: 767px) {
  .navbar .logo {
    min-width: 95px;
    max-width: 95px;
  }
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 767px) {
  .nav-links li a {
    gap: 5px;
    font-size: 14px;
  }
  .nav-links li a svg {
    min-width: 20px;
    height: 20px;
  }
  .nav-links li a span {
    display: none;
  }
}
.nav-links li a svg path {
  transition: 0.3s;
  fill: #fff;
}
.nav-links li a::after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background-color: #bdb931;
  transform: translateX(-50%) scaleX(0);
  transition: 0.3s;
  position: absolute;
  bottom: -10px;
  left: 50%;
}
.nav-links li a.active {
  color: #bdb931;
}
.nav-links li a.active svg path {
  fill: #bdb931;
}
.nav-links li a.active::after {
  transform: translateX(-50%) scaleX(1);
}