:root { --primary: #00c853; --bg: #f8f9fa; }
        body {        background: linear-gradient(45deg, #f95353, #ff98fb);
    font-family: 'Barlow', Roboto, sans-serif;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;}
	
	* { font-family: 'Barlow', Roboto, sans-serif;}
        .container {    max-width: 600px;
    width: 100%; }
        
        .card {     background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: fit-content;
    margin: 0 auto; }
        
        /* Form Styling */
        .form-group { margin-bottom: 15px; text-align: left; }
        label {    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #4d4d4d;
    margin-bottom: 5px;
    text-transform: capitalize;
    letter-spacing: 1px;}
        input { width: 100%; padding: 12px; border: 1px solid #eee; border-radius: 10px; box-sizing: border-box; font-size: 14px; transition: 0.3s; }
        input:focus { border-color: var(--primary); outline: none; background: #f0fff4; }
        
        .btn {     width: fit-content;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    transition: 0.3s;}
        .btn-main {     background: #f95353;
    color: white;
    width: -webkit-fill-available; }
        .btn-print { background: var(--primary); color: white; }
        .btn-back { background: #f1f1f1; color: #666; margin-top: 15px; }

        .qr-display { margin-bottom: 20px; padding: 10px; border: 2px dashed #eee; border-radius: 20px; display: inline-block; }
        .qr-display img { display: block; width: 200px; }

        @media print { .no-print { display: none; } .card { box-shadow: none; border: 1px solid #eee; } }
		.batch {
       position: absolute;
    top: 24px;
    right: 7px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(27deg);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,200,83,0.3);
    z-index: 10;
}

/* T&C Footer Container */
.tnc {
    font-size: 11px;
    line-height: 1.6;
    color: #94a3b8; /* Soft blue-grey */
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9; /* Light separator line */
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* T&C Links */
.tnc a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    border-bottom: 1px solid #cbd5e1; /* Subtle underline */
}

.tnc a:hover {
    color: #ff5252; /* Matches your primary theme color on hover */
    border-bottom-color: #ff5252;
}

/* Modern Checkbox (Optional) */
/* If you want an actual checkbox for consent, use this: */
.tnc-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    margin-bottom: 10px;
}

.tnc-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    cursor: pointer;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-content {
    background: white;
    padding: 30px;
    border-radius: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

/* Benefits List */
.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.benefit-item span {
    font-size: 24px;
    background: #fdf2e9;
    padding: 10px;
    border-radius: 12px;
    height: fit-content;
}

.benefit-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}