/* Ensure all boxes have the same fixed height */
.shop-box {
  background-color: #2d5468;
  border-radius: 20px;
  padding: 30px 20px;
  color: white;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%; /* allows equal height when used inside equal-height columns */
}


.shop-box:hover {
  transform: scale(1.03);
}
.shop-img { width: 40%;}

/* CUSTOM Button */
.shop-button {
  background-color: #e69412;
  color: white;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  width: 80%;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.shop-button:hover {
  background-color: #cf860f;
  transform: scale(1.02);
}

/* CUSTOM Button FUll */
.shop-button-full {
  background-color: #e69412;
  color: white;
  text-decoration: none;
  border: none;
  padding: 20px 20px;
  width: 100%;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.shop-button-full:hover {
  background-color: #cf860f;
  transform: scale(1.02);
}

/* Filtering  */
.filter-btn {
      background-color: #158c89;
      color: white;
      font-weight: bold;
      border-radius: 8px;
      padding: 12px 20px;
      margin: 5px;
      border: none;
      transition: background-color 0.3s ease;
    }

    .filter-btn.active {
      background-color: #202c45;
    }

    .d-none {
      display: none !important;
    }

/* PRODUCT DESCRIPTION  */
.product-box {
  background-color: #2d5468;
  border-radius: 20px;
  padding: 30px 20px;
  color: white;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%; /* allows equal height when used inside equal-height columns */
}
.custom-bullets {
  list-style-type: disc; /* circle bullet */
  color: black; /* bullet and text color */
  padding-left: 20px; /* spacing from left */
}

.custom-bullets li {
  margin-bottom: 8px; /* spacing between lines */
}

/* Shop Button Mid */
.shop-button-mid {
  background-color: #222222;
  color: white;
  text-decoration: none;
  border: none;
  padding: 15px 20px; /* Wider horizontal padding for better appearance */
  font-size: 20px;
  cursor: pointer;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: auto; /* Match text content by default (desktop) */
}

/* Hover Effect */
.shop-button-mid:hover {
  background-color: #555555;
  transform: scale(1.02);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .shop-button-mid {
    width: 90%;
    display: block;
    margin: 0 auto; /* Center horizontally */
    text-align: center;
  }
}


