/* Common css */
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: auto;
}
.panda-btn {
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgb(255, 88, 155) -0.006%,
    rgb(255, 19, 111) 99.994%
  );
  padding: 15px 35px;
  border: none;
  color: white;
  font-weight: 500;
}
.common-section-title {
  font-weight: 600;
  font-size: 36px;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.product-li {
  position: relative;
}
.dropdown-nav-items {
  position: absolute;
  top: 30%;
  left: -50px;
  padding: 5px 0;
  list-style: none;
  background-color: white;
  text-align: center;
  width: 150px;
  border-radius: 0 0 15px 15px;
  box-shadow: 2px 0px 8px 0px rgb(0 0 0 / 15%);
  visibility: hidden;
}
.dropdown-nav-items li {
  margin: 5px 0;
}
.product-li:hover .dropdown-nav-items {
  visibility: visible;
  top: 100%;
  transition: 0.5s;
}

.search-parent {
  position: relative;
  color: #bababa;
}

.search-parent input {
  border-radius: 66px;
  padding: 15px 30px;
  width: 500px;
  background-color: rgb(241, 241, 241);
  border: none;
}
.search-parent i {
  /* font-size: 50px; */
  position: absolute;
  top: 17px;
  right: 20px;
}

.nav-items {
  display: flex;
  list-style: none;
  gap: 10px;
}
.nav-items li a {
  text-decoration: none;
  color: #707070;
  font-weight: 600;
  font-size: 16px;
}

/* Banner  */
.banner {
  background: rgb(254, 234, 233);
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  padding: 28px;
  border-radius: 10px;
  margin-top: 25px;
}
.banner h2 {
  color: rgb(31, 31, 31);
  font-size: 52px;
  font-weight: bold;
}
.banner p {
  color: #4e4e4e;
  max-width: 500px;
}
.banner img {
  width: 402px;
  height: 378px;
}
.banner-price {
  color: #ff136f;
  font-weight: bold;
  font-size: 52px;
  margin-bottom: 35px;
  display: block;
  margin-bottom: 0;
}

.banner {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.banner:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.banner img {
  transition: transform 0.4s ease;
}

.banner:hover img {
  transform: scale(1.08);
}

.banner .panda-btn {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.banner .panda-btn:hover {
  background: linear-gradient(
    180deg,
    rgb(255, 19, 111),
    rgb(200, 0, 90)
  );
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 19, 111, 0.4);
}

/* Category */
.categories {
  margin: 64px auto;
}
.categories-card-container {
  display: flex;
  gap: 26px;
  width: 100%;
}
.category-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}
.category-card h3 {
  color: white;
  font-weight: bold;
  font-size: 30px;
}

.category-card:nth-child(1) {
  background: linear-gradient(
    151.85deg,
    rgb(255, 156, 53) 14.537%,
    rgb(255, 208, 25) 84.486%
  );
}
.category-card:nth-child(2) {
  background: linear-gradient(
    180deg,
    rgb(255, 88, 155) -0.006%,
    rgb(255, 19, 111) 99.994%
  );
}
.category-card:nth-child(3) {
  background: linear-gradient(
    170.38deg,
    rgb(66, 137, 255) 15.416%,
    rgb(63, 7, 248) 74.29%
  );
}

.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* shoes and bag section */
.shoes-backpack-parent {
  background: rgb(244, 244, 244);
}

.shoes-backpack-section-title-parent {
  display: flex;
  justify-content: space-between;
}
.shoes-backpack-section-title-parent h2 {
  font-weight: bold;
  font-size: 36px;
}
.shoes-backpack-section-title-parent p {
  font-size: 20px;
  color: #ff9d00;
}

/* shoes */
.shoes-section {
  padding: 50px 0;
}
.shoe-card-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.shoe-card {
  background-color: white;
  border-radius: 10px;
  text-align: center;
  padding: 25px;
  box-shadow: 2px 0px 8px 0px rgb(0 0 0 / 15%);
}
.card-price {
  display: block;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
}
.shoe-card img {
  width: 336px;
  height: 202px;
}
.shoe-card .panda-btn {
  background: black;
}

.shoe-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.shoe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.shoe-card img {
  transition: transform 0.3s ease;
}

.shoe-card:hover img {
  transform: scale(1.05);
}

/* Shoes cards hover */
#shoes-section .shoe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #66ccff, #3366ff); /* shoes hover color remains blue */
}

#shoes-section .shoe-card img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

#shoes-section .shoe-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Backpack cards hover */
#backpack-section .shoe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(255, 153, 51, 0.25); 
  background: linear-gradient(135deg, #ffcc66, #ff9900); 
}

#backpack-section .shoe-card img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

#backpack-section .shoe-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* contact */
.contact-us-parent {
  background-color: #fff2f1;
  text-align: center;
  padding: 35px 20px;
  margin: 35px auto;
  border-radius: 15px;
}

.contact-inp-btn-parent {
  display: flex;
  justify-content: center;
}
.contact-inp-btn-parent input {
  border: none;
  padding: 15px 152px;
}
.contact-inp-btn-parent .panda-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.contact-inp-btn-parent .panda-btn {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-inp-btn-parent .panda-btn:hover {
  background: linear-gradient(
    180deg,
    rgb(255, 19, 111),
    rgb(200, 0, 90)
  );
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 19, 111, 0.4);
}

/* =================== Responsive Styles =================== */
@media (max-width: 768px) {

  .container {
    margin: 0 15px;
    padding: 0 10px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .nav-items {
    flex-direction: column;
    gap: 8px;
  }

  .search-parent input {
    width: 100%;
    padding: 12px 20px;
  }

  .banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .banner h2 {
    font-size: 36px;
  }

  .banner p {
    font-size: 16px;
    max-width: 100%;
    margin: 15px auto;
  }

  .banner img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .banner .panda-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .categories-card-container {
    flex-direction: column;
    gap: 15px;
  }

  .category-card h3 {
    font-size: 24px;
  }

  .shoe-card-container {
    flex-direction: column;
    gap: 20px;
  }

  .shoe-card img {
    width: 100%;
    height: auto;
  }

  .card-price {
    font-size: 18px;
  }

  .shoe-card .panda-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .shoes-backpack-section-title-parent h2 {
    font-size: 28px;
  }

  .shoes-backpack-section-title-parent p {
    font-size: 16px;
  }

  .contact-us-parent {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .contact-inp-btn-parent {
    flex-direction: column;
    gap: 10px;
  }

  .contact-inp-btn-parent input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
  }

  .contact-inp-btn-parent .panda-btn {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
  }

  .dropdown-nav-items {
    left: 0;
    top: 100%;
    width: 100%;
  }

  .banner-price {
    font-size: 36px;
  }

  .panda-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

}
