:root {
    --primary: #f27a1a;
    --primary-hover: #e06b12;
    --success: #10B981;
    --text-main: #111827;
    --text-muted: #6B7280;
    --bg-main: #F3F4F6;
    --bg-card: #FFFFFF;
    --border: #E5E7EB;
    --radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    display: flex;
    justify-content: center;
}

.landing-container {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    min-height: 100vh;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow-x: hidden;
}

.image-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    font-size: 0;
    line-height: 0;
}

.landing-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.custom-cta-banner {
    margin: 0;
    border-radius: 0; 
    box-shadow: none; 
}

/* Form Styles */
.order-form-wrapper {
    background: var(--bg-card);
    position: relative;
    z-index: 10;
    margin-top: 0; 
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05); /* Soft shadow on top to separate from images */
    line-height: 1.5;
    font-size: 16px;
}

.order-form-container {
    padding: 24px 16px 36px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.order-form-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    text-align: center;
}

.subtitle {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-main);
    background-color: #FAFAFA;
    transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

input::placeholder, textarea::placeholder {
    color: #9CA3AF;
}

small {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

select {
    appearance: none;
    cursor: pointer;
}

select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #F3F4F6;
}

/* Payment Methods - Modern Premium & Accessible */
.payment-methods {
    margin: 32px 0;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #eeeeee;
    border: 3px solid #d0d0d0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.radio-card:hover {
    border-color: #ddd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 18px;
}

.icon-nakit {
    background: #ecfdf5;
    color: #10b981;
}

.icon-kart {
    background: #fff7ed;
    color: #f27a1a;
}

.radio-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.radio-content .title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0px;
}

.radio-content .desc {
    font-size: 14px;
    color: #666;
}

/* Selected State */
.radio-card:has(input:checked) {
    border-color: #f27a1a;
    background: #ffd2a1;
    box-shadow: 0 8px 20px rgba(242, 122, 26, 0.3);
}

.check-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: 12px;
    flex-shrink: 0;
}

.check-mark i {
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.radio-card input:checked ~ .check-mark {
    background: #f27a1a;
    border-color: #f27a1a;
    box-shadow: 0 0 0 4px rgba(242, 122, 26, 0.15);
}

.radio-card input:checked ~ .check-mark i {
    opacity: 1;
    transform: scale(1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.submit-btn:active {
    transform: translateY(1px);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 12px;
}

.secure-badge svg {
    color: var(--success);
}

/* Sticky Banner - Minimal Design */
.sticky-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 468px;
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%); /* Elegant Red Gradient */
    color: white;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

.sticky-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px) scale(0.95);
    pointer-events: none;
}

.sticky-banner:active:not(.hidden) {
    transform: translateX(-50%) scale(0.98);
}

.banner-left {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.banner-text-1 { 
    font-size: 13px; 
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2px;
}

.banner-text-3 { 
    font-size: 16px; 
    font-weight: 700;
}

.banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
}

.banner-timer {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.banner-timer i {
    font-size: 12px;
}

.banner-viewer-count {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Trust Badges Image */
.trust-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Legal Footer */
.legal-footer {
    background: #111424;
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 16px;
    padding-bottom: 100px; /* Space for the fixed sticky banner */
    text-align: center;
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-links .dot {
    opacity: 0.3;
    font-size: 10px;
}

.footer-copyright {
    opacity: 0.4;
    font-size: 11px;
}
/* Modal & Notice Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.modal-icon.warning { color: #f59e0b; }
.modal-icon.error { color: #ef4444; }

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.2s;
}

.modal-wp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #22c55e;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
