/* This is the common style area */

@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

.sub-header {
  max-width: 1220px;
  margin: 0 auto;
}
.main {
  background-color: #f1f1f1;
  padding: 50px 0 100px 0;
}
.sub-main {
  max-width: 1130px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.buy-btn {
  border: none;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  gap: 10px;
  cursor: pointer;
}

.dark-1 {
  color: #1f1f1f;
}
.dark-2 {
  color: #4e4e4e;
}
.dark-3 {
  color: #707070;
}
.dark-4 {
  color: #cccc;
}

/* The nav section starts from here */

.navbar {
  justify-content: space-around;
  align-items: center;
  margin: 50px auto;
}

.searchbar {
  position: relative;
  width: 40%;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

input[type="search"] {
  border-radius: 50px;
  border: none;
  background-color: #f1f1f1;
  padding: 12px 0 12px 12px;
  width: 100%;
}

input::placeholder {
  color: #cccccc;
}

input:focus {
  outline: none;
}

.list-container {
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.list-container .list-item {
  list-style: none;
}

.list-item a {
  text-decoration: none;
  color: #707070;
}
/* The banner section starts from here */

.banner {
  background-color: #feeae9;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 40px;
  margin-bottom: 50px;
}

.banner-title {
  font-size: 3.5rem;
  color: #1f1f1f;
  font-weight: 700;
}

.banner-details {
  font-size: 1rem;
  color: #4e4e4e;
}
.banner-price {
  color: rgb(255, 19, 111);
  font-size: 41px;
  font-weight: 500;
}
.banner-btn {
  background-image: linear-gradient(
    180deg,
    rgb(255, 88, 155) -0.006%,
    rgb(255, 19, 111) 99.994%
  );
}

.banner-img img {
  width: 350px;
  border-radius: 10px;
}

/* The category section starts from here */
.categories {
  margin-bottom: 50px;
  max-width: 1130px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.categories-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-categories {
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.product-categories div {
  justify-content: space-between;

  width: 350px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(
    151.85deg,
    rgb(255, 156, 53) 14.537%,
    rgb(255, 208, 25) 84.486%
  );
  flex: 1;
}

.product-categories .category-2 {
  background: linear-gradient(
    180deg,
    rgb(255, 88, 155) -0.006%,
    rgb(255, 19, 111) 99.994%
  );
  flex: 1;
}
.product-categories .category-3 {
  background: linear-gradient(
    170.38deg,
    rgb(66, 137, 255) 15.416%,
    rgb(63, 7, 248) 74.29%
  );
  flex: 1;
}
.product-categories > div img {
  width: 65px;
}
/* The shoe section starts from here */

.shoes-product {
  margin-bottom: 100px;
}

.shoes-title {
  margin: 20px;
}
.card-container-1 {
  justify-content: space-between;
  gap: 20px;
}

.product-card img {
  width: 335px;
}
.product-card {
  border-radius: 20px;
  height: 500px;
  width: 360px;
  padding: 25px;
  text-align: center;
  background-color: #fff;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-details {
  margin-bottom: 20px;
}

.pd-btn {
  background-color: #000;
  justify-content: center;
  align-items: center;
  display: block;
  margin: auto;
}
/* The backpack section starts from here */

.backpack-product {
  margin-bottom: 100px;
}

.backpack-title {
  margin: 20px;
}

.backpack-product .product-card img {
  width: 230px;
}

/* The subscribe section starts from here */
.footer {
  max-width: 1220px;
  margin: 0 auto;
}
.footer-area {
  background-color: #fff2f1;
  border-radius: 10px;
  height: 450px;
  width: 90%;
  margin: 70px auto;
  text-align: center;
  padding: 120px;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f1f1f;
}
.footer-details {
  font-weight: 500;
  color: #707070;
  margin-bottom: 30px;
}
.subscribe {
  margin: 0 auto;
  max-width: 650px;
  height: 70px;
  position: relative;
}
.subscribe input {
  border: none;
  padding-left: 20px;
  border-radius: 10px 0 0 10px;
  width: 70%;
  height: 80%;
  position: absolute;
  left: 0;
}
.subscribe input::placeholder {
  font-size: 1.5rem;
  color: #cccccc;
}

.footer-btn {
  border: none;
  position: absolute;
  right: 0;
  border-radius: 0 10px 10px 0;
  font-size: 1.5rem;
  color: #ffff;
  width: 30%;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgb(255, 88, 155) 0.004%,
    rgb(255, 19, 111) 100.004%
  );
}
