.woo-clickable-carousel-container {
    margin: 20px 0;
}

.woo-product-carousel .product-carousel-item {
    padding: 15px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    margin: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.woo-product-carousel .product-carousel-item.custom-item {
    padding: 0;
}

.woo-product-carousel .product-carousel-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.woo-product-carousel .product-carousel-item img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.woo-product-carousel .product-carousel-item:hover img {
    transform: scale(1.05);
}

.woo-product-carousel .product-carousel-item h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    line-height: 1.3;
    padding: 0 10px;
}

.woo-product-carousel .product-carousel-item .price {
    display: block;
    font-weight: bold;
    color: #77a464;
    font-size: 15px;
    padding: 0 10px 10px;
}

.woo-product-carousel .owl-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woo-product-carousel:hover .owl-nav {
    opacity: 1;
}

.woo-product-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.woo-product-carousel .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.woo-product-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.woo-product-carousel .owl-nav button.owl-next {
    right: -20px;
}

.woo-product-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.woo-product-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    margin: 0 5px;
    padding: 0 !important;
    transition: all 0.3s ease;
}

.woo-product-carousel .owl-dots button.owl-dot.active {
    background: #333 !important;
    transform: scale(1.2);
}

/* Custom items specific styles */
.woo-product-carousel .custom-item h3 {
    margin-top: 15px;
}

.woo-product-carousel .custom-item .price {
    margin-bottom: 15px;
}