
/* === UPDATE 012: lightweight swipe system === */
.swipeSection{max-width:980px;margin-left:auto;margin-right:auto}
.swipeDeck{
    position:relative;
    width:min(420px,92vw);
    height:min(620px,72vh);
    margin:22px auto 18px;
    perspective:1000px;
}
.swipeCard{
    position:absolute;
    inset:0;
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 24px 70px rgba(16,24,40,.18);
    touch-action:none;
    user-select:none;
    cursor:grab;
    transform-origin:50% 90%;
    transition:transform .22s ease, opacity .22s ease;
}
.swipeCard:active{cursor:grabbing}
.swipeCard img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.swipeInfo{
    position:absolute;
    left:0;right:0;bottom:0;
    padding:80px 22px 22px;
    color:#fff;
    background:linear-gradient(to top,rgba(0,0,0,.82),rgba(0,0,0,.25),transparent);
}
.swipeInfo h2{font-size:30px;margin:0 0 8px}
.swipeInfo p{margin:10px 0 0;line-height:1.45;opacity:.92}
.swipeInfo .onlineBadge{background:rgba(255,255,255,.18);color:#fff;border:1px solid rgba(255,255,255,.2)}
.swipeOverlay{
    position:absolute;
    top:28px;
    padding:10px 16px;
    border:4px solid currentColor;
    border-radius:16px;
    font-weight:950;
    font-size:28px;
    letter-spacing:1px;
    opacity:0;
    transform:rotate(-12deg);
    background:rgba(255,255,255,.16);
    backdrop-filter:blur(8px);
    z-index:5;
}
.swipeOverlay.like{left:24px;color:#15d37f}
.swipeOverlay.nope{right:24px;color:#ff3b6b;transform:rotate(12deg)}
.swipeCard.swiping-right .swipeOverlay.like{opacity:1}
.swipeCard.swiping-left .swipeOverlay.nope{opacity:1}
.swipeControls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    margin:8px auto 26px;
}
.swipeBtn{
    width:74px;height:74px;
    border:0;border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:900;
    background:#fff;
    box-shadow:0 16px 38px rgba(16,24,40,.14);
    cursor:pointer;
    transition:transform .16s ease, box-shadow .16s ease;
}
.swipeBtn:active{transform:scale(.94)}
.nopeBtn{color:#ff3b6b}
.likeBigBtn{color:#ff2f7d}
.likeBigBtn{background:linear-gradient(135deg,#ff2f7d,#7c3aed);color:#fff}
.swipeEmpty{text-align:center;max-width:620px;margin:24px auto}
.mobileSwipeQuick{
    position:fixed;
    right:18px;
    bottom:96px;
    z-index:10001;
    width:54px;height:54px;
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:linear-gradient(135deg,#ff2f7d,#7c3aed);
    color:#fff;
    box-shadow:0 14px 32px rgba(124,58,237,.32);
}
@media(max-width:768px){
    .swipeDeck{height:min(590px,68vh);width:min(390px,94vw)}
    .swipeInfo h2{font-size:26px}
    .swipeBtn{width:66px;height:66px;font-size:28px}
    .mobileSwipeQuick{display:flex}
}
@media(max-width:420px){
    .swipeDeck{height:560px;max-height:66vh}
    .swipeInfo{padding:70px 18px 18px}
}
