/*FONT IMPORTING*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

.poppins {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/*UNIVERSAL STYLING*/
body {
  margin: 0;
}
* {
  box-sizing: border-box;
}
.main-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
main {
  max-width: 1110px;
  margin: 0 auto;
}
/*COLORS and SHARED ITEMS*/
.color1 {
  color: #3a3a3a;
}
/*HEADER STYLING (1) - (Navigation Bar)*/
header {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 85px;
}
.brand-name {
  font-size: 1.5rem;
  margin: 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 2.12rem;
  margin: 0;
}
.navbar-items a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 600;
}
.navbar-items a:hover {
  text-decoration: underline;
}
/*Banner Part*/
.banner-title {
  font-weight: bold;
  font-size: 3.25rem;
  margin: 0;
  line-height: 70px;
}
.banner-description {
  font-weight: 600;
}
.banner-button {
  background-color: #e02c6d;
  border-radius: 41px;
  color: white;
  padding: 10px 24px;
  border: none;
  font-weight: bold;
}
.banner {
  display: flex;
  align-items: center;
  margin-top: 42px;
  gap: 131px;
}
.banner-img {
  background-image: url(images/Circle\ design.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 30px 33px 30px 2px;
}
.banner-img > img {
  width: 440px;
  height: auto;
}
/*LOGO SECTION*/

.logo-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 60px;
}
.logo {
  max-width: 1110px;
  margin: 70px auto 100px auto;
  padding: 35px 50px;
  position: relative;
}
.logo-row {
  display: contents;
}

.logo::before,
.logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(233, 233, 233),
    rgba(255, 255, 255, 0)
  );
}

.logo::before {
  top: 0;
}

.logo::after {
  bottom: 0;
}

/*PRODUCT COLLECTION SECTION*/
.collection {
  max-width: 1047px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1.75rem;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cards {
  border-radius: 5px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.cards img {
  width: 100%;
  height: auto;
  display: block;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: rgba(24, 25, 31, 1);
  margin: 8px 0 6px 0;
}
.price {
  font-size: 1.5rem;
  font-family: "inter", sans-serif;
  color: rgba(0, 0, 0, 0.87);
  line-height: 150%;
  margin: 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rating-image-container {
  display: flex;
}
.rating-text {
  font-weight: bold;
  font-size: 0.875rem;
  color: rgba(94, 99, 102, 1);
  margin: 0;
}
.product-description {
  font-size: 0.875rem;
  font-weight: bold;
  color: rgba(120, 120, 133, 1);
  font-family: "inter", sans-serif;
  line-height: 143%;
}
.see-more {
  text-align: right;
  font-weight: bold;
  color: rgba(224, 44, 109, 0.87);
  margin-top: 50px;
}

/*FEATURED PRODUCTS SECTION STYLING*/
.featured-product {
  max-width: 1110px;
  margin: 100px auto;
  display: flex;
  gap: 96px;
  align-items: center;
}
.featured-image-container {
  flex: 0 0 404px;
}
.featured-product img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.featured-product-title {
  font-weight: bold;
  font-size: 2.375rem;
  line-height: 60px;
  margin: 23px 0 0;
  letter-spacing: 0px;
}

.featured-product-description {
  font-weight: bold;
  line-height: 28px;
  color: rgba(108, 108, 108, 1);
  margin: 16px 0;
}
.button2 {
  background-color: #e02c6d;
  color: white;
  padding: 10px 24px;
  border: none;
  font-weight: bold;
}

/*FOOTER STYLING*/
footer {
  max-width: 1440px;
  margin: 0 auto;
  background-color: rgba(10, 8, 38, 1);
  padding: 50px 0;
}
.footer-container {
  text-align: center;
  padding: 1px;
}
.footer-title {
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  margin: 0;
}
.footer-text1 {
  color: rgba(217, 219, 225, 1);
  font-size: 0.875rem;
  font-weight: bold;
  margin: 3px 0;
}
.footer-text2 {
  color: rgba(217, 219, 225, 1);
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0 0 17px;
}
.footer-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
/*MEDIA QUERIES FOR MOBILE(max width 576px) AND TABLET (min width 576px and max width 1024px*/
/*HEADER RESPONSIVE (Mobile)*/
@media screen and (max-width: 576px) {
  header {
    padding-top: 35px;
  }
  nav,
  .navbar {
    flex-direction: column;
  }
  .navbar {
    gap: 5px;
    padding: 0;
  }
  .banner {
    flex-direction: column-reverse;
    margin-top: 22px;
    gap: 14px;
  }
  .banner-img > img {
    width: 280px;
    padding: 51px 33px 16px 22px;
  }
  .banner-content {
    text-align: center;
  }
  .banner-title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
/*TABLET*/
@media screen and (min-width: 576px) and (max-width: 1024px) {
  header {
    padding-top: 60px;
  }
  nav {
    flex-direction: column;
    gap: 15px;
  }
  .navbar {
    gap: 60px;
    padding: 0;
  }
  .banner {
    flex-direction: column-reverse;
    margin-top: 22px;
    gap: 14px;
  }
  .banner-img > img {
    width: 400px;
    padding: 51px 33px 16px 22px;
  }
  .banner-content {
    text-align: center;
    padding: 0 10px;
  }
  .banner-title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
/*LOGO SECTION RESPONSIVE (Mobile)*/
/*LOGO SECTION RESPONSIVE*/
@media screen and (max-width: 576px) {
  .logo {
    padding: 0;
    margin: 50px;
  }
  .logo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    gap: 22px;
  }
  .logo-row {
    display: flex;
    gap: 22px;
    justify-content: center;
  }
  .logo-list img {
    width: 55px;
  }
}
/*TABLET*/
@media screen and (min-width: 576px) and (max-width: 1024px) {
  .logo {
    padding: 0;
    margin: 50px;
  }
  .logo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo-row {
    display: flex;
    gap: 80px;
    justify-content: center;
  }
}
/*FEATURED PRODUCT SECTION RESPONSIVE (Mobile)*/
@media screen and (max-width: 576px) {
  .featured-product {
    flex-direction: column-reverse;
    padding: 0 16px;
    margin: 50px 0;
    gap: 30px;
  }
  .featured-product-content {
    text-align: center;
  }
  .featured-product-title {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
  }
  .featured-image-container {
    flex: 0 0 auto;
    padding: 0 14px;
  }
}
/*TABLET*/
@media screen and (min-width: 576px) and (max-width: 1024px) {
  .featured-product {
    flex-direction: column-reverse;
    gap: 66px;
  }
  .featured-product-content {
    text-align: center;
  }
  .featured-image-container {
    width: 100%;
    padding: 0 66px;
  }
}
/*PRODUCT COLLECTION SECTION (Mobile)*/
@media screen and (max-width: 576px) {
  .cards-container {
    grid-template-columns: 1fr;
    column-gap: 15px;
  }
  .collection {
    margin: 0 16px 0 16px;
  }
  .see-more {
    margin-top: 32px;
  }
}
/*TABLET*/
@media screen and (min-width: 576px) and (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection {
    margin: 0 16px 0 16px;
  }
}
