/* Container holding the products */
.ewcpl-product-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust gap between items as needed */
}

/* Each product item occupies 25% of the width minus gaps */
.ewcpl-product-item {
  flex: 0 0 calc(25% - 20px);
  box-sizing: border-box;
}
.ewcpl-product-title{font-size:20px;}
.ewcpl-product-image {
  height: 300px; /* Enforce height */
  object-fit: cover; /* Ensure the image covers the container by cropping if needed */
}
.ewcpl-product-image  img{height: 100%;}
.ewcpl-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none; /* hidden initially */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ewcpl-popup-content {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 5px;
  position: relative;
  max-height: 90vh;
  overflow: scroll;
  scrollbar-color: red orange;
  scrollbar-width: thin;
}

.ewcpl-close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
/* PRODUCT LOOP LAYOUT */
.ewcpl-product-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ewcpl-product-item {
  flex: 0 0 calc(25% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* MOBILE: 2 columns */
@media (max-width: 768px) {
  .ewcpl-product-item {
    flex: 0 0 calc(50% - 20px);
  }
}

.ewcpl-order-button {
  padding: 10px;
  border: none;
  border-radius: 4px;
}
.ewcpl-order-button .et-icon {
    margin-right: 10px;
}
/* POPUP OVERLAY (always full screen) */
.ewcpl-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP CONTENT */
.ewcpl-popup-content {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 5px;
  position: relative;
}

/* CLOSE BUTTON */
.ewcpl-close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

/* Ensure images inside products look good */
.ewcpl-product-image img {
  width: 100%;
  height: auto;
  display: block;
}
