.wcbc-cube-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    perspective: 1000px;
    overflow: hidden;
}
.wcbc-cube-container {
    width: 100%;
    height: 400px;
    position: relative;
    transition: transform 0.5s;
}
.wcbc-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}
.wcbc-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: auto;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.wcbc-controls {
    text-align: center;
    margin-top: 20px;
}
.wcbc-prev, .wcbc-next {
    background: #333;
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 5px 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 4px;
}
.wcbc-prev:hover, .wcbc-next:hover {
    background: #555;
}
.wcbc-banner-content {
    width: 100%;
}
.wcbc-banner-image img {
    max-width: 100%;
    height: auto;
}
.wcbc-button {
    display: inline-block;
    background-color: transparent;
    background-image: linear-gradient(180deg, #DB7937 0% 0%, #f26100 100%);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}
.wcbc-button:hover {
    background: #f26100;
    color: #fff;
}