/* Woo Tabbed Slider PRO V6.1 – Dark Vintage Auction */

.wts-wrapper{
    margin:40px 0;
    padding:24px 18px 26px;
    background:#05060a;
    border-radius:20px;
    position:relative;
    overflow:hidden;
}

.wts-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:18px;
    gap:16px;
}

.wts-title{
    margin:0;
    font-size:22px;
    font-weight:600;
    color:#f5f5ff;
}

.wts-tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.wts-tab{
    background:transparent;
    border:none;
    cursor:pointer;
    font-size:14px;
    padding:6px 10px;
    color:#8f9bbd;
    position:relative;
    transition:.25s;
}
.wts-tab::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#ff7043;
    border-radius:999px;
    transition:.25s;
}
.wts-tab-active{
    color:#ffffff;
}
.wts-tab-active::after{
    width:100%;
}

.wts-tab-panels{
    margin-top:8px;
}

.wts-tab-panel{
    display:none;
}
.wts-panel-active{
    display:block;
}

/* Swiper */
.wts-swiper{
    padding:4px 0 4px;
}
.wts-swiper .swiper-wrapper{
    align-items:stretch;
}
.wts-swiper .swiper-slide{
    width:230px;
}

/* Card */
.wts-card{
    background:radial-gradient(circle at top,#181b27 0,#070812 60%);
    border-radius:18px;
    padding:10px 10px 14px;
    box-shadow:0 0 20px rgba(255,180,80,.2);
    overflow:hidden;
    transform:translateY(0) scale(1);
    transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}
.wts-card:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 0 30px rgba(255,200,120,.3);
    filter:blur(0.2px);
}

.wts-card-img{
    position:relative;
    width:100%;
    padding-top:72%;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:10px;
}
.wts-card-img img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease, filter .4s ease;
}
.wts-card:hover .wts-card-img img{
    transform:scale(1.06);
    filter:brightness(1.07);
}

.wts-vip-badge{
    position:absolute;
    top:8px;
    left:8px;
    background:linear-gradient(135deg,#ffeb3b,#ff9800);
    padding:3px 8px;
    border-radius:999px;
    font-size:11px;
    font-weight:700;
    color:#1b1300;
    box-shadow:0 0 10px rgba(0,0,0,.5);
    text-transform:uppercase;
    letter-spacing:.5px;
}

.wts-card-body{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.wts-card-title{
    margin:0;
    font-size:15px;
    font-weight:500;
    color:#f5f5ff;
}

.wts-card-price{
    font-size:15px;
    font-weight:600;
    color:#ffcf82;
}

.wts-card-meta{
    margin-top:4px;
    display:flex;
    justify-content:space-between;
    font-size:12px;
    color:#a9b2d4;
}
.wts-card-time{
    color:#ff855a;
}
.wts-card-bids{
    color:#9ad27d;
}

.wts-lastbids-btn{
    margin-top:8px;
    align-self:flex-start;
    font-size:12px;
    border-radius:999px;
    border:none;
    padding:5px 10px;
    background:#141826;
    color:#f5f5ff;
    cursor:pointer;
    transition:.2s;
}
.wts-lastbids-btn:hover{
    background:#ff7043;
    color:#000;
}

.wts-empty{
    color:#9ca3af;
    padding:20px;
}

/* Swiper navigation arrows */
.wts-nav-prev,
.wts-nav-next{
    position:absolute;
    top:50%;
    width:26px;
    height:26px;
    margin-top:-13px;
    border-radius:999px;
    background:rgba(15,17,26,.95);
    box-shadow:0 0 12px rgba(0,0,0,.5);
    z-index:10;
    cursor:pointer;
}
.wts-nav-prev::before,
.wts-nav-next::before{
    content:'';
    position:absolute;
    inset:0;
    margin:auto;
    width:8px;
    height:8px;
    border-top:2px solid #f5f5ff;
    border-right:2px solid #f5f5ff;
}
.wts-nav-prev{
    left:-4px;
}
.wts-nav-prev::before{
    transform:rotate(-135deg);
}
.wts-nav-next{
    right:-4px;
}
.wts-nav-next::before{
    transform:rotate(45deg);
}

/* Popup */

.wts-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.wts-popup{
    background:#050711;
    border-radius:18px;
    box-shadow:0 0 25px rgba(0,0,0,.6);
    width:95%;
    max-width:520px;
    max-height:80vh;
    display:flex;
    flex-direction:column;
}
.wts-popup-header{
    padding:12px 16px;
    border-bottom:1px solid rgba(255,255,255,.06);
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.wts-popup-header h3{
    margin:0;
    font-size:16px;
    color:#f5f5ff;
}
.wts-popup-close{
    background:none;
    border:none;
    color:#f5f5ff;
    font-size:20px;
    cursor:pointer;
}
.wts-popup-body{
    padding:10px 16px 14px;
    overflow:auto;
}
.wts-bid-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    padding:6px 0;
    border-bottom:1px solid rgba(255,255,255,.04);
}
.wts-bidder{
    color:#f5f5ff;
    font-weight:500;
}
.wts-bid-amount{
    color:#ffcf82;
    font-weight:600;
}
.wts-bid-date{
    color:#8f9bbd;
    font-size:11px;
}

/* Responsive */
@media (max-width:768px){
    .wts-header{
        flex-direction:column;
        align-items:flex-start;
    }
    .wts-title{
        font-size:18px;
    }
    .wts-swiper .swiper-slide{
        width:72%;
    }
}
@media (max-width:480px){
    .wts-swiper .swiper-slide{
        width:82%;
    }
}
