/* ============================= */
/* PRODUCT SHOWCASE SLIDER */
/* ============================= */

.product-showcase-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(25, 118, 210, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.product-showcase-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.product-showcase-heading h2 {
  margin: 14px 0 0;
  color: #0b2f5b;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 760px;
}

.product-showcase-intro {
  margin: 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
}

.product-slider {
  position: relative;
}

.product-slider-viewport {
  overflow: hidden;
}

.product-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.75s ease;
  will-change: transform;
}

.product-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  min-height: 580px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.10);
}

.product-slide-image-wrap {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-slide-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-slide-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}

.product-slide-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: #f0442e;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.product-slide h3 {
  margin: 0 0 14px;
  color: #0b2f5b;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
}

.product-slide p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
}

.product-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 24px;
}

.product-slide-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #0b2f5b;
  font-size: 13px;
  font-weight: 800;
  background: #eef4fb;
  border-radius: 999px;
}

.product-slide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 22px;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #2d84de 0%, #0b4ea2 100%);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(45, 132, 222, 0.18);
}

.product-slide-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1f78d7 0%, #093f84 100%);
}

.product-slide-cta {
  border-color: rgba(240, 68, 46, 0.18);
  background: linear-gradient(180deg, #fff8f6 0%, #ffffff 100%);
}

.product-slide-cta .product-slide-image-wrap {
  display: none;
}

.product-slide-cta .product-slide-content {
  justify-content: center;
  min-height: 100%;
}

.product-slide-cta .product-slide-link {
  background: linear-gradient(135deg, #f25b3f 0%, #df3c23 100%);
  box-shadow: 0 14px 28px rgba(240, 68, 46, 0.18);
}

.product-slide-cta .product-slide-link:hover {
  background: linear-gradient(135deg, #e95136 0%, #cf351d 100%);
}

.product-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0b2f5b;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.2s ease;
}

.product-slider-arrow:hover {
  background: #0b2f5b;
  color: #ffffff;
}

.product-slider-arrow-prev {
  left: -26px;
}

.product-slider-arrow-next {
  right: -26px;
}

.product-slider-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.product-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.product-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c7d3e1;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-slider-dot.active {
  width: 30px;
  border-radius: 999px;
  background: #2d84de;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1199px) {
  .product-showcase-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .product-slider-arrow-prev {
    left: -16px;
  }

  .product-slider-arrow-next {
    right: -16px;
  }
}

@media (max-width: 767px) {
  .product-showcase-section {
    padding: 80px 0;
  }

  .product-slide {
    flex: 0 0 100%;
    min-height: auto;
  }

  .product-slide-image-wrap {
    height: 220px;
  }

  .product-slide h3 {
    font-size: 30px;
  }

  .product-slide p {
    font-size: 16px;
  }

  .product-slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .product-slider-arrow-prev {
    left: -8px;
  }

  .product-slider-arrow-next {
    right: -8px;
  }
}