/* Frontend Slider Styles */
.wpc-slider-container {
    padding: 20px 0;
    position: relative;
}

.wpc-product-card, .wpc-category-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.wpc-product-details, .wpc-category-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}

.wpc-product-card:hover, .wpc-category-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.wpc-product-image, .wpc-category-image {
    position: relative;
}

.wpc-product-image img, .wpc-category-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.wpc-product-title, .wpc-category-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.3;
    /* min-height: 2.6em; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wpc-product-title a, .wpc-category-card a, .wpc-category-link-disabled {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wpc-category-empty {
    opacity: 0.8;
}

.wpc-product-price, .wpc-category-count {
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    display: block;
}

.wpc-product-action .button, .wpc-category-action .button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    /* font-size: 14px; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.wpc-product-action .button:hover, .wpc-category-action .button:hover {
    background: #333;
    color: #fff;
}

.wpc-product-action, .wpc-category-action {
    margin-top: auto;
}

.wpc-category-empty .wpc-category-action .button {
    opacity: 0.6;
    cursor: not-allowed;
}

.wpc-sale-badge {
    position: absolute;
    top: 1.5em;
    left: 1.5em;
    color: var(--ast-global-color-3, #fff);
    background-color: var(--ast-global-color-primary, var(--ast-global-color-5, #d63638));
    width: fit-content;
    border-radius: 20px;
    padding: 0.4em 0.8em;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    box-shadow: 0 4px 4px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Theme: Modern */
.theme-modern .wpc-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Theme: Bordered */
.theme-bordered .wpc-product-card {
    border: 2px solid #333;
}

/* Swiper adjustments */
.swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet-active {
    background: #000;
}
