.elementor-231 .elementor-element.elementor-element-5c443ec{--display:flex;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-1524a12 */@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* Main Section */
.product-showcase-section {
  padding: 60px 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Title */
.showcase-main-title {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: #000000;
  margin-top: 0;
  margin-bottom: 40px;
}

/* Container for the 50/50 split */
.showcase-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Gives the block a clean, premium lifted look */
  border-radius: 4px;
  overflow: hidden;
}

/* Left Image Column */
.showcase-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F4F6F8; /* Soft background to mimic the studio look in the screenshot */
  position: relative;
}

.showcase-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px; /* Ensures the image doesn't collapse */
}

/* Right Text Column */
.showcase-text-col {
  flex: 1;
  background-color: #2F88CA; /* Using your brand blue instead of green */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  text-align: center;
}

/* Product Title inside block */
.showcase-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 35px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* See More Button */
.showcase-btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2F88CA; /* Text color matches the background block */
  background-color: #ffffff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.showcase-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-btn svg {
  width: 20px;
  height: 20px;
  fill: #2F88CA;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.showcase-btn:hover {
  background-color: #E6F0FA;
}

.showcase-btn:hover svg {
  transform: translateX(4px); /* Pushes the arrow to the right slightly on hover */
}


/* --- Responsive Layout --- */

/* Tablet and Mobile Stacking */
@media (max-width: 992px) {
  .showcase-container {
    flex-direction: column;
  }
  
  .showcase-image-col img {
    max-height: 400px;
  }
  
  .showcase-text-col {
    padding: 50px 20px;
  }
  
  .showcase-title {
    font-size: 22px;
  }
}/* End custom CSS */