/* Wartakita Banner Slider V3.1 */
.wk-banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

.wk-banner-slider {
    position: relative;
    width: 100%;
    min-height: 380px; /* Sedikit ditambah agar deskripsi muat */
}

.wk-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.wk-banner-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.wk-banner-slide a {
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.wk-banner-img {
    width: 100%;
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
}

.wk-banner-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.wk-banner-content {
    padding: 15px;
    text-align: center;
}

.wk-banner-title {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.3;
}

.wk-banner-desc {
    font-size: 0.8em;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi maksimal 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wk-banner-price {
    color: #ee4d2d;
    font-weight: 800;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.wk-banner-btn {
    background: #ee4d2d;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1em;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.wk-banner-btn:hover {
    background: #d73a1c;
}