body.pis-page{
    background:linear-gradient(180deg,#F8FAFC,#DDE8F8);
    min-height:100vh;
    font-family:Inter,sans-serif;
}

.pis-container{
    max-width:600px;
    margin:30px auto;
    padding:15px;
}
.pis-slots-closed{
    background:#ffe2e2;
    color:#dc2626;
}
.pis-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 15px 40px rgba(25,103,210,.12);
    text-align:center;
    position:relative;
    overflow:hidden;
    border:1px solid #e8eef8;
}

.pis-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #1967d2,
        #4f8ef7
    );
}

.pis-logo{
    width:120px;
    margin-bottom:15px;
}

.pis-badge{
    display:inline-block;
    background:#e8f0fe;
    color:#1967d2;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.pis-title{
    font-size:30px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
    line-height:1.2;
}

.pis-subtitle{
    font-size:15px;
    color:#6b7280;
    line-height:1.6;
    margin-bottom:25px;
}

.pis-details{
    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.pis-item{
    flex:1;
    background:#f8fafc;
    border-radius:16px;
    padding:16px;
}

.pis-item span{
    display:block;
    color:#64748b;
    font-size:13px;
    margin-bottom:8px;
}

.pis-item strong{
    font-size:16px;
    color:#111827;
    word-break:break-word;
}

.pis-price-box{
    background:#f8fafc;
    border-radius:18px;
    padding:25px;
    margin-bottom:25px;
}

.pis-old-price{
    font-size:18px;
    color:#94a3b8;
    text-decoration:line-through;
}

.pis-new-price{
    font-size:42px;
    font-weight:800;
    color:#1967d2;
    margin:10px 0;
}

.pis-discount{
    color:#16a34a;
    font-size:15px;
    font-weight:700;
}

.pis-countdown{
    background:linear-gradient(
        135deg,
        #1967d2,
        #4f8ef7
    );
    border-radius:18px;
    padding:25px;
    color:#fff;
    margin-bottom:25px;
}

.pis-countdown-label{
    font-size:13px;
    opacity:.9;
    letter-spacing:1px;
}

.pis-countdown-time{
    font-size:34px;
    font-weight:800;
    margin-top:10px;
}

.pis-slots{
    display:inline-block;
    background:#fff4e5;
    color:#ea580c;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.pis-features{
    text-align:left;
    margin-bottom:25px;
}

.pis-feature{
    background:#f8fafc;
    border-radius:12px;
    padding:12px 15px;
    margin-bottom:10px;
    color:#475569;
    font-size:14px;
}

.pis-button{
    display:block;
    width:100%;
    background:#1967d2;
    color:#fff;
    padding:16px;
    border-radius:14px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.pis-button:hover{
    background:#1558b5;
    transform:translateY(-2px);
}

.pis-search-card{
    max-width:550px;
    margin:60px auto;
    background:#fff;
    border-radius:28px;
    padding:45px;
    text-align:center;
    box-shadow:
        0 20px 60px rgba(25,103,210,.12);
    border:1px solid #e8eef8;
}

.pis-search-badge{
    display:inline-block;
    background:#e8f0fe;
    color:#1967d2;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.pis-search-title{
    font-size:32px;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.pis-search-subtitle{
    color:#64748b;
    font-size:16px;
    line-height:1.7;
    margin-bottom:35px;
}

.pis-search-input{
    width:100%;
    padding:18px 22px;
    border:2px solid #e2e8f0;
    border-radius:16px;
    font-size:16px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.pis-search-input:focus{
    border-color:#1967d2;
    box-shadow:
        0 0 0 4px rgba(25,103,210,.1);
}

.pis-search-button{
    width:100%;
    margin-top:18px;
    background:#1967d2;
    color:#fff;
    border:0;
    border-radius:16px;
    padding:18px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.pis-search-button:hover{
    background:#1558b5;
    transform:translateY(-2px);
}


.pis-error-card{
max-width:550px;
margin:40px auto;
padding:40px;
background:#fff;
border-radius:24px;
text-align:center;
border:1px solid #fde2e2;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.pis-error-icon{
width:70px;
height:70px;
margin:0 auto 20px;
border-radius:50%;
background:#fff4e5;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
}

.pis-error-title{
font-size:28px;
font-weight:800;
color:#111827;
margin-bottom:15px;
}

.pis-error-text{
font-size:16px;
line-height:1.7;
color:#64748b;
margin-bottom:30px;
}

.pis-error-button{
display:inline-block;
background:#1967d2;
color:#fff;
text-decoration:none;
padding:14px 28px;
border-radius:14px;
font-weight:700;
transition:.3s;
}

.pis-error-button:hover{
background:#1558b5;
transform:translateY(-2px);
}
.pis-whatsapp-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 25px rgba(37,211,102,.25);
}

.pis-whatsapp-button:hover{
    background:#1da851;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(37,211,102,.35);
}

@media(max-width:768px){

    .pis-card{
        padding:25px;
    }

    .pis-title{
        font-size:24px;
    }

    .pis-subtitle{
        font-size:14px;
    }

    .pis-details{
        flex-direction:column;
    }

    .pis-new-price{
        font-size:36px;
    }

    .pis-countdown-time{
        font-size:28px;
    }

    .pis-button{
        font-size:16px;
    }
}