/* CPK Slider Styles */
.cpk-slider {
  position: relative !important;
  width: 100%;
  overflow: hidden;
}

.cpk-slides {
  position: relative;
  width: 100%;
}

.cpk-slide {
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateX(60px);
}

.cpk-slide.active {
  display: block;
  animation: cpkSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cpkSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cpk-slide-content {
  display: flex !important;
  width: 100%;
  height: 450px;
  align-items: stretch;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cpk-text-panel {
  width: 25%;
  min-width: 250px;
  background-color: #f26531;
  padding: 40px 30px 40px 45px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  margin: 0 !important;
}

.cpk-title {
  color: #fff !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  margin: 0 0 28px 0 !important;
  padding: 0 !important;
  letter-spacing: 1px;
}

.cpk-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 32px 0 !important;
}

.cpk-features li {
  color: #fff !important;
  font-size: 1.2rem !important;
  line-height: 1.3 !important;
  padding: 0 0 0 14px !important;
  margin: 0 0 2px 0 !important;
  position: relative;
}

.cpk-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

.cpk-btn {
  display: inline-block;
  background-color: transparent;
  color: #fff !important;
  border: 1.5px solid #fff !important;
  padding: 10px 24px !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 0 !important;
}

.cpk-btn:hover {
  background-color: #fff;
  color: #f26531 !important;
  text-decoration: none !important;
}

.cpk-image-panel {
  width: 75%;
  background-color: #f7f5ee;
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
}

.cpk-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.cpk-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid #fff !important;
  border-radius: 50%;
  background: transparent !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0 !important;
  margin: 0 !important;
}

.cpk-nav-arrow i {
  font-size: 19px;
  color: #fff;
  line-height: 1;
}

.cpk-nav-arrow:hover {
  background-color: #333 !important;
}

.cpk-nav-arrow:hover i {
  color: #fff;
}

.cpk-next {
  right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .cpk-slide-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .cpk-text-panel {
    width: 100% !important;
    min-width: 100%;
    padding: 25px !important;
  }
  
  .cpk-image-panel {
    width: 100% !important;
    height: 280px;
  }
  
  .cpk-nav-arrow {
    width: 44px;
    height: 44px;
    right: 15px;
  }
}