.qty-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.qty-box .qty {
    width: 40px;
    text-align: center;
    margin: 0 5px;
}
.qty-box button {
    width: 30px;
    height: 30px;
}
.add-to-cart-btn {
    display: inline-block;
    margin-top: 10px;
	margin-bottom: 15px;
}
        .ccs-carousel.swiper {
            width: 100% !important;
			padding: 20px;
        }
        .ccs-carousel .swiper-wrapper {
            display: flex !important;
        }
        .ccs-carousel .swiper-slide {
            width: auto !important;
            flex-shrink: 0 !important;
        }
        .ccs-carousel .swiper-slide.product-card {
            max-width: 100px;
            width: 100%;
            background: #fff;
            padding: 5px;
            border-radius: 6px !important;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .product-card img {
            width: 100%;
            height: auto;
            max-width: 100px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .product-card h3 {
            font-size: 16px;
            margin: 10px 0 5px;
        }
        .rating {
            color: #ffa500;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .price {
            font-weight: bold;
            margin: 5px 0;
        }
        .qty-box {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 10px 0;
        }
        .qty-box button {
            border-radius: 50%;
            border: 1px solid #ccc;
            padding: 4px 10px;
            background: #fff;
            font-size: 16px;
            cursor: pointer;
        }
        .qty-box input.qty {
            width: 35px;
            text-align: center;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .add-to-cart-btn {
            background: transparent;
            border: 2px solid #5e5ce6;
            color: #5e5ce6;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
        }
.qty-btn {
  width: 36px;
  height: 100%;
  background: #f44336;
  color: white;
  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
  border-radius: 0px !important;
}

.qty-btn.minus {
  background: #fdecec;
  color: #f44336;
}

.qty-btn.plus {
  background: #f44336;
  color: white;
}

.prod-carousel-name {
  height: 2.8em; /* Adjust based on line-height for 2 lines */
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show up to 2 lines */
  -webkit-box-orient: vertical;
}
.ccs-category-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 20px 0 10px;
    text-align: center;
}
