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

/* common class */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
}

.heading-text {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f1f1f;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 359px;
  height: 120px;
  /* background-color: pink; */
  border-radius: 10px;
  padding: 7px 40px 7px 40px;
}

.category-item h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: #ffffff;
}

.shoes-item {
  padding: 24px;
  border: 3px solid #929292;
  width: 360px;
  min-height: 504px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.shoes-item h4,
.shoes-item p,
.shoes-item span,
.shoes-item button {
  margin-bottom: 16px;
}

.shoes-item img {
  margin-bottom: 22px;
}

.shoes-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f1f1f;
}

.shoes-item p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #4e4e4e;
}

.shoes-item span {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
}

.shoes-item button {
  padding: 14px 20px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
}

.shoes-item button i {
  margin-left: 10px;
}

/* navber  */
#navber {
  margin-top: 30px;
}

/* hero section */
#hero-container {
  margin-top: 49px;
  background-color: #feeae9;
  padding: 30px 35px;
  border-radius: 20px;
}

.products-text {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.products-text h1 {
  font-family: "Poppins", sans-serif;
  color: #1f1f1f;
  font-size: 3.5rem;
  font-weight: bold;
}

.products-text p {
  font-family: "Inter", sans-serif;
  color: #4e4e4e;
  line-height: 26px;
  font-size: 1rem;
  margin-top: 8px;
  max-width: 456px;
}

.products-text span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2.56rem;
  color: #ff136f;
  margin-top: 8px;
}

.hero-btn {
  margin-top: 8px;
  padding: 16px 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-align: center;
  border-radius: 6px;
  border: none;
  /* background-color: #ff136f; */
  color: #ffffff;
  background: linear-gradient(to top, #ff136f, #f72a78, #fa76a9);
}

#category-section {
  margin-top: 60px;
}

#category-container {
  display: block;
}

.category-card {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.watch-card {
  background-color: #ff9c35;
}

.bag-card {
  background-color: #ff136f;
}

.shoes-card {
  background-color: #3f07f8;
}

/* Shoes Section  */
#shoes-section {
  margin-top: 98px;
}

.shoes-container {
  display: block;
}

.container-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0;
}

#backpack-section {
  margin-top: 98px;
}

/* subscribe container  */
#subscribe-section {
  margin-top: 169px;
}
.subscribe-container {
  background-color: #fff2f1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 146px 246px;
  margin-bottom: 73px;
}

.subscribe-container h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1.88rem;
  font-weight: 600;
  color: #1f1f1f;
}

.subscribe-container p {
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #707070;
}

.subscribe-container form {
  margin-top: 16px;
}

.input-box {
  display: flex;
  justify-content: center;
}

.input-box input {
  width: 527px;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
  font-size: 1.2rem;
}

.input-box button {
  padding: 20px 30px;
  background: linear-gradient(to top, #FF136F, #FF589B);
  border: none;
  outline: none;
  border-radius: 0 5px 5px 0;
  color: #ffffff;
  font-size: 1.2rem;
}



/*RESPONSIVE DESIGN */
img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1128px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* Laptop Device (max-width: 1200px) */

@media screen and (max-width: 1200px) {
    .products-text h1 {
        font-size: 3rem;
    }
    
    .products-text span {
        font-size: 2rem;
    }
}

/* Tablet Device (max-width: 992px) */

@media screen and (max-width: 992px) {
    #hero-container {
        flex-direction: column;
        text-align: center;
        height: auto; 
    }

    .products-text {
        align-items: center; 
        margin-bottom: 30px;
    }

    .products-text p {
        text-align: center;
    }

    .category-card {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .container-item {
        flex-direction: column;
        align-items: center;
    }
    
    .shoes-item {
        width: 100%; 
        max-width: 360px;
    }

    .input-box input {
        width: 100%;
        min-width: 200px;
    }
    
    .subscribe-container {
        padding: 80px 20px;
    }
}

/* Mobile Device (max-width: 640px) */
@media screen and (max-width: 640px) {
    #navber .container {
        padding: 0 20px;
    }
    .category-item {
        width: 100%;
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 20px;
    }

    .category-item img {
        margin-top: 15px;
        width: 80px;
    }

    .heading-text {
        font-size: 2rem;
        text-align: center;
    }

    .input-box {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .input-box input {
        border-radius: 5px;
        margin-bottom: 10px;
        width: 100%;
    }

    .input-box button {
        border-radius: 5px; /
    }
    
    .products-text h1 {
        font-size: 2.2rem;
    }
}

/* HOVER EFFECTS */

.category-item, 
.shoes-item, 
.hero-btn, 
.shoes-item button, 
.input-box button,
.shoes-item button i {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.category-item img {
    transition: transform 0.3s ease;
}
.category-item:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.shoes-item:hover {
    border-color: #ff136f;
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.shoes-item img {
    transition: transform 0.3s ease;
}
.shoes-item:hover img {
    transform: scale(1.05);
}

.hero-btn:hover, 
.input-box button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 19, 111, 0.5);
}

.shoes-item button:hover {
    background-color: #ff136f;
    color: white;
    padding-right: 25px;
}

.shoes-item button:hover i {
    transform: translateX(5px); 
}

.logo img {
    transition: transform 0.3s;
}
.logo img:hover {
    transform: rotate(-3deg) scale(1.1);
}
