/* Product Carousel Styles */

.aicw-message-products {
  clear: both;
  float: left;
  width: 100%;
  max-width: 320px;
  margin: 12px 0 18px 35px;
  padding: 0;
  background: transparent;
  border: none;
  direction: ltr;
}

.aicw-product-carousel-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 0 0 4px;
}

.aicw-product-carousel-wrapper .swiper {
  padding: 6px 2px 34px;
  overflow: visible;
}

.aicw-product-carousel-wrapper .swiper-wrapper {
  align-items: stretch;
}

.aicw-product-carousel-wrapper .swiper-slide {
  height: auto;
  display: flex;
}

.aicw-product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.aicw-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.15);
  border-color: #2271b1;
}

.aicw-product-card:active {
  transform: translateY(-2px);
}

.aicw-product-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.aicw-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.aicw-product-card:hover .aicw-product-image img {
  transform: scale(1.06);
}

.aicw-product-stock {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}

.aicw-product-stock.in-stock {
  background: #16a34a;
}

.aicw-product-stock.out-of-stock {
  background: #dc2626;
}

.aicw-product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.aicw-product-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aicw-product-card:hover .aicw-product-name {
  color: #2271b1;
}

.aicw-product-description {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aicw-product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.aicw-product-price {
  font-size: 18px;
  font-weight: 800;
  color: #2271b1;
  letter-spacing: -0.02em;
}

/* Swiper Navigation Buttons */
.aicw-product-carousel-wrapper .swiper-button-next,
.aicw-product-carousel-wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aicw-product-carousel-wrapper .swiper-button-next:after,
.aicw-product-carousel-wrapper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  transition: color 0.3s ease;
}

.aicw-product-carousel-wrapper .swiper-button-next:hover,
.aicw-product-carousel-wrapper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-color: transparent;
  transform: scale(1.08);
}

.aicw-product-carousel-wrapper .swiper-button-next:hover:after,
.aicw-product-carousel-wrapper .swiper-button-prev:hover:after {
  color: #fff;
}

.aicw-product-carousel-wrapper .swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: scale(1) !important;
}

/* Swiper Pagination */
.aicw-product-carousel-wrapper .swiper-pagination {
  bottom: 0;
  position: relative;
  margin-top: 8px;
}

.aicw-product-carousel-wrapper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(15, 23, 42, 0.25);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aicw-product-carousel-wrapper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Responsive adjustments */
@media only screen and (max-width: 450px) {
  .aicw-message-products {
    margin-left: 0;
    max-width: 100%;
  }

  .aicw-product-info {
    padding: 12px;
  }

  .aicw-product-name {
    font-size: 14px;
  }

  .aicw-product-price {
    font-size: 16px;
  }

  .aicw-product-carousel-wrapper .swiper-button-next,
  .aicw-product-carousel-wrapper .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .aicw-product-carousel-wrapper .swiper-button-next:after,
  .aicw-product-carousel-wrapper .swiper-button-prev:after {
    font-size: 14px;
  }
}

