@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800&display=swap");

/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "Mulish", sans-serif;
}

/* =========================
   PRODUCTS PAGE
========================= */

.section-p1 {
  padding: 9rem 0rem;
  background: #050c2c;
}

#products {
  text-align: center;
}

.products-content h1 {
  font-size: 42px;
  color: #8b5e3c;
  margin: 4rem 0 3rem;
  position: relative;
}

.products-content h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c89b6d, #8b5e3c);
  display: block;
  margin: 10px auto;
  border-radius: 5px;
}

/* Product Cards */

.pro-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.pro {
  width: 23%;
  min-width: 250px;
  padding: 12px;
  background: #fff;
  border: 1px solid #cce7d0;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.pro:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pro img {
  width: 100%;
  border-radius: 15px;
}

.pro .des {
  padding-top: 12px;
  text-align: center;
}

.pro .des span {
  color: #777;
  font-size: 13px;
}

.pro .des h5 {
  margin-top: 6px;
  font-size: 16px;
  color: #1a1a1a;
}

/* =========================
   COMMON PRODUCT DETAIL BOX
========================= */

.handi_garm-section {
  background: #fff;
  padding: 40px;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.handi_garm-section img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.baby-garm {
  object-fit: contain !important;
  transform: rotate(-17deg);
}

/* =========================
   HANDICRAFT
========================= */

.handi_garm-content {
  text-align: left;
}

.handi_garm-content h2 {
  color: #8b5e3c;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.handi_garm-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 18px;
}

/* Lists */

.handi_garm-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.handi_garm-list li {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 17px;
  margin-bottom: 15px;
}

.handi_garm-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #8b5e3c;
  margin-right: 12px;
  font-size: 18px;
}

.more-btn {
  margin-top: 20px;
  background: #8b5e3c;
  color: #fff;
}

.btn:focus {
  box-shadow: none;
}

.more-btn:hover {
  background-color: #fff;
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .section-p1 {
    padding: 6rem 40px;
  }

  .handi_garm-section {
    padding: 30px;
  }

  .handi_garm-content {
    margin-top: 30px;
  }

  .handi_garm-content h2 {
    font-size: 28px;
  }

  .handi_garm-section img {
    height: 300px;
  }

  .baby-garm {
    transform: rotate(0deg);
  }
}

@media (max-width: 767px) {
  .pro {
    width: 100%;
  }

  .products-content h1 {
    margin-top: 7rem;
  }
}

@media (max-width: 576px) {
  .section-p1 {
    padding: 5rem 20px;
  }

  .products-content h1 {
    font-size: 32px;
  }

  .handi_garm-section {
    padding: 20px;
  }

  .handi_garm-content h2 {
    margin-top: 50px;
    font-size: 24px;
  }

  .handi_garm-content p,
  .handi_garm-list li {
    font-size: 15px;
  }
}
