@charset "utf-8";
body{
    background:#080808;
    color:#fff;
}

.market-nav{
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(18px);
}

.market-page{
    padding-top:90px;
}

.market-hero{
    padding:70px 0 48px;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 32%),
        linear-gradient(180deg,#101010,#080808);
}

.market-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 15px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.28);
    color:#f5d76e;
    font-size:13px;
    font-weight:900;
}

.market-hero h1{
    max-width:780px;
    margin:22px 0 12px;
    font-size:clamp(34px, 6vw, 68px);
    line-height:1;
    letter-spacing:-2px;
    font-weight:950;
}

.market-hero p{
    max-width:620px;
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.5;
}

.market-search{
    margin-top:28px;
    width:min(100%, 860px);
    min-height:66px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:9px 10px 9px 22px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(18px);
}

.market-search i{
    color:#f5d76e;
}

.market-search input{
    flex:1;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.market-search input::placeholder{
    color:rgba(255,255,255,.55);
}

.market-search button{
    height:48px;
    padding:0 24px;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,#f5d76e,#b8860b);
    color:#090909;
    font-weight:950;
    cursor:pointer;
}

.quick-filters{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.quick-filters a{
    padding:10px 15px;
    border-radius:999px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.13);
}

.market-results{
    padding:40px 0 80px;
}

.results-top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:26px;
}

.results-top span{
    color:#f5d76e;
    font-size:13px;
    font-weight:900;
}

.results-top h2{
    margin:6px 0 0;
    font-size:28px;
}

.clear-search{
    color:#f5d76e;
    text-decoration:none;
    font-weight:900;
}

.market-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.market-card{
    border-radius:26px;
    overflow:hidden;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 25px 70px rgba(0,0,0,.28);
    transition:.25s ease;
}

.market-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,175,55,.35);
}

.market-img-box{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
    background:#000;
}

.market-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.market-card:hover .market-img-box img{
    transform:scale(1.06);
}

.video-label,
.status-label{
    position:absolute;
    top:14px;
    padding:8px 11px;
    border-radius:999px;
    font-size:11px;
    font-weight:950;
    backdrop-filter:blur(12px);
}

.video-label{
    left:14px;
    background:rgba(0,0,0,.55);
    color:#fff;
}

.status-label{
    right:14px;
}

.status-label.salto{
    background:#00e676;
    color:#031d0b;
}

.status-label.venta{
    background:#f5d76e;
    color:#080808;
}

.market-info{
    padding:20px;
}

.market-name-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:flex-start;
}

.market-name-row h3{
    margin:0;
    font-size:21px;
}

.market-name-row span{
    padding:5px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.09);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.market-location{
    margin:10px 0;
    color:rgba(255,255,255,.72);
    font-size:14px;
}

.market-location i{
    color:#f5d76e;
}

.market-tags{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:14px;
}

.market-tags span{
    padding:6px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.78);
    font-size:11px;
    font-weight:800;
}

.market-price{
    display:block;
    color:#f5d76e;
    font-size:22px;
    margin-bottom:10px;
}

.market-desc{
    color:rgba(255,255,255,.62);
    font-size:14px;
    line-height:1.45;
}

.market-actions{
    margin-top:16px;
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
}

.view-btn{
    padding:11px 16px;
    border-radius:999px;
    background:#f5d76e;
    color:#080808;
    text-decoration:none;
    font-size:13px;
    font-weight:950;
}

.owner-mini-text{
    color:rgba(255,255,255,.55);
    font-size:12px;
    font-weight:800;
}

.empty-market{
    padding:70px 24px;
    text-align:center;
    border-radius:28px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.10);
}

.empty-market i{
    font-size:44px;
    color:#f5d76e;
}

.empty-market h3{
    font-size:28px;
    margin:18px 0 8px;
}

.empty-market p{
    color:rgba(255,255,255,.65);
}

@media(max-width:1024px){
    .market-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){

    .market-page{
        padding-top:76px;
    }

    .market-hero{
        padding:42px 0 32px;
    }

    .market-search{
        border-radius:24px;
        padding:15px;
        display:grid;
        grid-template-columns:24px 1fr;
    }

    .market-search button{
        grid-column:1 / -1;
        width:100%;
    }

    .quick-filters{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:5px;
    }

    .quick-filters a{
        flex:0 0 auto;
    }

    .results-top{
        align-items:flex-start;
        flex-direction:column;
    }

    .market-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .market-img-box{
        aspect-ratio:4/3;
    }
}/* CSS Document */

