*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:#f4f7fb;
}

header{
    text-align:center;
    padding:50px 20px;
}

header h1{
    font-size:40px;
    color:#222;
}

header p{
    color:#666;
    margin-top:10px;
}

.payment-status{
    width: min(90%, 1100px);
    margin: 0 auto 24px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #eff6ff;
    color: #1d4ed8;
    display: none;
    font-size: 15px;
}

.payment-status.success{
    display: block;
    background: #ecfdf3;
    color: #047857;
}

.payment-status.info{
    display: block;
    background: #eff6ff;
    color: #1d4ed8;
}

.products{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    padding-bottom:60px;
}

.card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.card img{

    width:100%;
    height:220px;
    object-fit:cover;
}

.card h2{

    font-size:22px;

    margin:20px;
}

.card p{

    margin:0 20px;

    color:#777;
}

.bottom{

    margin:25px 20px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.price{

    font-size:28px;

    color:#2563eb;

    font-weight:bold;
}

.bottom a{

    text-decoration:none;

    background:#2563eb;

    color:white;

    padding:12px 22px;

    border-radius:10px;

    transition:.3s;
}

.bottom a:hover{

    background:#1d4ed8;
}