/* Glassmorphism & Premium Styles */
.wpc-carousel-wrapper {
    padding: 20px 0;
    position: relative;
}

.wpc-product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wpc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wpc-image-wrapper {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.wpc-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.wpc-product-card:hover .wpc-image-wrapper img {
    transform: scale(1.05);
}

/* Badge */
.wpc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Actions (Add to Cart) */
.wpc-actions {
    margin-top: 10px;
}

.wpc-actions .button {
    background: #000; /* Dark premium button */
    color: #fff;
    border-radius: 25px;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
    display: inline-block;
}

.wpc-actions .button:hover {
    background: #333;
}

.wpc-title {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
}

.wpc-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.wpc-title a:hover {
    color: #0073aa; /* WooCommerce/Theme color */
}

.wpc-price {
    font-size: 15px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 5px;
}

.wpc-price del {
    color: #999;
    font-size: 13px;
    font-weight: normal;
}

.wpc-rating {
    margin-top: auto; /* Push to bottom */
}

/* Swiper Navigation Customization */
.wpc-carousel-wrapper .swiper-button-next,
.wpc-carousel-wrapper .swiper-button-prev {
    color: #000;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.wpc-carousel-wrapper .swiper-button-next:after,
.wpc-carousel-wrapper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.wpc-carousel-wrapper .swiper-pagination-bullet-active {
    background: #000;
}
