: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%;
    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 */
}

.order-form-container {
    padding: 32px 20px 48px;
    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: 16px;
    display: flex;
    flex-direction: column;
}

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

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

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

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    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;
}

/* Custom Radio Cards with Icons */
.payment-methods {
    margin-top: 24px;
    margin-bottom: 24px;
}

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

.radio-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.radio-card:hover {
    border-color: #D1D5DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.3s ease;
}

.nakit-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.kart-icon {
    background: rgba(242, 122, 26, 0.1); /* Trendyol turuncu .1 opacity */
    color: var(--primary);
}

.radio-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(242, 122, 26, 0.04);
}

.radio-card input:checked ~ .radio-content .title {
    color: var(--primary);
}

.radio-card input:checked ~ .radio-icon.nakit-icon {
    background: var(--success);
    color: white;
}

.radio-card input:checked ~ .radio-icon.kart-icon {
    background: var(--primary);
    color: white;
}

.custom-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.radio-card input:checked ~ .custom-radio {
    border-color: var(--primary);
    background: var(--primary);
}

.radio-card input:checked ~ .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

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

.radio-content .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.radio-content .desc {
    font-size: 12px;
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    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;
}
