/* Wrapper for all widgets */
#custom-product-list.widget-responsive {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Individual product card */
.widget-responsive .custom-product-card {
  margin-bottom: 25px;
}

/* Card wrapper layout */
.widget-responsive .card-wrapper {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #fff;
}

/* Image container */
.widget-responsive .card-image {
  flex: 1;
  width: 250px;
}
.widget-responsive .card-image img{
    width: 100%;
}
/* Content container */
.widget-responsive .card-content {
  flex: 1;
  padding-left: 15px;
}

/* Title and price layout */
.widget-responsive .product-title-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.widget-responsive .product-title {
  font-style: italic;
  margin: 0;
  font-size: 2em;
}

.widget-responsive .product-price {
  margin: 0;
  font-weight: bold;
}

/* Event details */
.widget-responsive .event-details p {
  margin: 20px 0;
  font-weight: 500;
  color: #000;
}
p.event-people{
  font-weight: 500;
  color: #000;
}
}
.progress-bar-wrapper{
    margin-bottom: 20px!important;
}
.progress-bar-wrapper span{
    font-size: 13px;
}
/* Progress bar */
.widget-responsive .progress-bar {
  background-color: #eee;
  height: 8px;
  border-radius: 4px;
  margin: 10px 0;
  width: 100%;
  overflow: hidden;
	position:relative;
}

.widget-responsive .progress-bar-inner {
  background-color: #3b82f6;
  height: 100%;
  border-radius: 4px;
	position:absolute;
	top:0;
	left:0;
}

/* Button */
.widget-responsive a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF97AE;
  border-radius: 8px;
  text-decoration: none!important;
  color: #fff!important;
  font-weight: 600;
  width: 100%;
  text-align: center;
  border-radius: 50px;
  margin-top: 25px!important;
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
	.widget-responsive .card-image {
		width:100%
	}
  .widget-responsive .card-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .widget-responsive .card-image,
  .widget-responsive .card-content {
    flex: 1 1 100%;
    padding-left: 0;
  }

  .widget-responsive .product-title-price {
    flex-direction: column;
    align-items: flex-start;
  }
}
