* {margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
    body {
        background: linear-gradient(135deg,#00c6ff,#0072ff,#f77062,#fe5196);
        background-size: 300% 300%;
        animation: gradient 8s ease infinite;
        min-height: 100vh;
        padding: 0;
        margin: 0;
    }
    @keyframes gradient {
        0%{background-position:0% 50%;}
        50%{background-position:100% 50%;}
        100%{background-position:0% 50%;}
    }
    .header {
        position: sticky;
        top: 0;
        background: #fff;
        padding: 15px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #eee;
        z-index: 10;
    }
    .header a {
        margin-right: 15px;
        color: #333;
        font-size: 20px;
        text-decoration: none;
    }
    .header h1 {
        font-size: 18px;
        color: #333;
    }
    .container {
        max-width: 500px;
        margin: auto;
        padding: 20px;
    }
    .price-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    .price-card {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .service-name {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }
    .service-name i {
        color: #0072ff;
        font-size: 20px;
    }
    .price {
        font-size: 15px;
        font-weight: 600;
        color: #f77062;
    }
    .quantity-control {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
    .quantity-control button {
        background: #0072ff;
        color: #fff;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
    }
    .quantity-control span {
        font-size: 16px;
        font-weight: bold;
        width: 25px;
        text-align: center;
    }
    .footer {
        text-align: center;
        background: #fff;
        padding: 15px;
        border-top: 1px solid #eee;
        position: sticky;
        bottom: 0;
    }
    .total-harga {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }
    .pesan-btn {
        width: 100%;
        padding: 12px;
        background: #f77062;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        border: none;
        cursor: pointer;
    }
    .pesan-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }