/* Ne yapsam donmez, donmez ki bir daha. */









































































@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.paytrix-completed-transaction {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.paytrix-transaction-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0f2fe;
}

.paytrix-transaction-status {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 600;
    color: #166534;
    font-size: 14px;
    margin-bottom: 8px;
}

.paytrix-transaction-subtitle {
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.paytrix-details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.paytrix-details-table tr:nth-child(even) {
    background: #f8fafc;
}

.paytrix-details-table tr:hover {
    background: #e2e8f0;
    transition: background-color 0.2s ease;
}

.paytrix-details-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.paytrix-details-table tr:last-child td {
    border-bottom: none;
}

.paytrix-detail-label-cell {
    font-weight: 600;
    color: #475569;
    width: 40%;
    background: #f1f5f9 !important;
}

.paytrix-detail-value-cell {
    font-weight: 700;
    color: #1e293b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.paytrix-amount-highlight {
    color: #059669;
    font-size: 18px;
}

.paytrix-status-badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

.paytrix-warning-footer { 
    background: linear-gradient(135deg, #fef9c3, #fef08a); 
    border: 1px solid #facc15; 
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

.paytrix-warning-footer strong {
    color: #92400e;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.paytrix-warning-footer span {
    color: #92400e;
    font-size: 14px;
}

.paytrix-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: paytrixFadeIn 0.5s ease-out;
}

.paytrix-success-modal {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    text-align: center;
    max-width: 420px;
    width: 85%;
    position: relative;
    overflow: hidden;
    transform: scale(0.7) translateY(50px);
    animation: paytrixModalSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.paytrix-success-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: paytrixShimmer 2s linear infinite;
}

.paytrix-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    position: relative;
}

.paytrix-success-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.25);
    animation: paytrixSuccessPulse 2s infinite;
}

.paytrix-checkmark {
    width: 40px;
    height: 40px;
    position: relative;
}

.paytrix-checkmark::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 28px;
    border: 3px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    left: 50%;
    top: 50%;
    margin-left: -7px;
    margin-top: -16px;
    animation: paytrixCheckmarkDraw 0.8s ease-out 0.5s both;
}

.paytrix-confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    animation: paytrixConfettiFall 3s linear infinite;
}

.paytrix-confetti:nth-child(1) { left: 10%; animation-delay: 0s; background: #4ecdc4; }
.paytrix-confetti:nth-child(2) { left: 20%; animation-delay: 0.2s; background: #45b7d1; }
.paytrix-confetti:nth-child(3) { left: 30%; animation-delay: 0.4s; background: #96ceb4; }
.paytrix-confetti:nth-child(4) { left: 40%; animation-delay: 0.6s; background: #feca57; }
.paytrix-confetti:nth-child(5) { left: 50%; animation-delay: 0.8s; background: #ff9ff3; }
.paytrix-confetti:nth-child(6) { left: 60%; animation-delay: 1s; background: #54a0ff; }
.paytrix-confetti:nth-child(7) { left: 70%; animation-delay: 1.2s; background: #5f27cd; }
.paytrix-confetti:nth-child(8) { left: 80%; animation-delay: 1.4s; background: #00d2d3; }
.paytrix-confetti:nth-child(9) { left: 90%; animation-delay: 1.6s; background: #ff6348; }

.paytrix-success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    animation: paytrixSlideInUp 0.8s ease-out 0.3s both;
}

.paytrix-success-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
    animation: paytrixSlideInUp 0.8s ease-out 0.5s both;
}

.paytrix-transaction-details {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    animation: paytrixSlideInUp 0.8s ease-out 0.7s both;
}

.paytrix-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.paytrix-detail-item:last-child {
    margin-bottom: 0;
}

.paytrix-detail-label {
    color: #64748b;
    font-weight: 500;
}

.paytrix-detail-value {
    color: #1e293b;
    font-weight: 700;
}

.paytrix-progress-container {
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    margin: 24px 0;
    overflow: hidden;
    animation: paytrixSlideInUp 0.8s ease-out 0.9s both;
}

.paytrix-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    width: 0%;
    animation: paytrixProgressFill 4s ease-out 1s forwards;
}

.paytrix-redirect-message {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 20px;
    animation: paytrixSlideInUp 0.8s ease-out 1.1s both;
}

.paytrix-countdown {
    font-weight: 700;
    color: #10b981;
}

@keyframes paytrixFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes paytrixModalSlideIn {
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes paytrixSuccessPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes paytrixCheckmarkDraw {
    0% { transform: rotate(45deg) scale(0); }
    100% { transform: rotate(45deg) scale(1); }
}

@keyframes paytrixSlideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes paytrixProgressFill {
    to { width: 100%; }
}

@keyframes paytrixConfettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes paytrixShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@media (max-width: 600px) {
    .paytrix-success-modal {
        padding: 30px 20px;
        margin: 16px;
        max-width: 350px;
    }
    
    .paytrix-success-title {
        font-size: 1.7rem;
    }
    
    .paytrix-success-subtitle {
        font-size: 0.9rem;
    }
    
    .paytrix-success-icon {
        width: 80px;
        height: 80px;
    }
    
    .paytrix-success-circle {
        width: 80px;
        height: 80px;
    }
}


.error-content {
    text-align: center;
    color: #e53e3e;
    padding: 40px 20px;
}

.error-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.error-message {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.6;
}

.home-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.detail-item {
    position: relative;
    margin-bottom: 20px;
}

.detail-icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.copy-icon {
    background-color: #3b82f6;
    color: white;
}

.qr-image {
    width: 24px;
    height: 24px;
}

.copy-icon:hover {
    background-color: #2563eb;
}

.qr-icon {
    background-color: #eab308;
    color: white;
}

.qr-icon:hover {
    background-color: #ca8a04;
}

.qr-container {
    margin-top: 15px;
    text-align: center;
    display: none;
}

.qr-container canvas {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.close-qr {
    margin-top: 10px;
    background-color: #6b7280;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}

.close-qr:hover {
    background-color: #4b5563;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.payment-card {
    width: 70%;
    max-width: 1000px;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg) rotateY(1deg); }
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.left-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.logo-section {
    text-align: center;
    z-index: 10;
    margin-bottom: 50px;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255,255,255,0.6)); }
}

.logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: logoShine 3s linear infinite;
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo svg {
    width: 50px;
    height: 50px;
    fill: white;
    z-index: 2;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.site-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.bank-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    z-index: 10;
    padding: 0 20px;
}

.bank-icon {
    width: 75px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.7);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.bank-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.bank-icon:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.bank-icon:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
}

.bank-icon img {
    width: 45px;
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.bank-icon:hover img {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    transform: scale(1.05);
}

.company-info {
    font-size: 16px;
    opacity: 0.9;
    z-index: 10;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.right-panel {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 50px;
    position: relative;
}

.right-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 0 30px 0 100px;
}

.payment-form {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.form-title2 {
    font-size: 12px;
    color: red;
    text-align: center;
    margin-bottom: 40px;
    margin-top: -20px;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    color: #2d3748;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.payment-details {
    display: none;
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.detail-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.detail-item:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.detail-label {
    font-size: 11px;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    word-break: break-all;
    padding-right: 80px;
    line-height: 1.4;
}

.copy-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.copy-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.timer {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff8a80 100%);
    color: white;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: timerShine 2s infinite;
}

@keyframes timerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.payment-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.payment-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 20px 25px;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
}

.notification.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.loading {
    display: none;
    text-align: center;
    margin-top: 15px;
    color: #667eea;
    font-weight: 500;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .payment-card {
        width: 85%;
        flex-direction: column;
        min-height: auto;
    }
    
    .left-panel {
        min-height: 300px;
        padding: 40px 20px;
    }
    
    .right-panel {
        padding: 40px 30px;
    }
    
    .bank-icons {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
    
    .bank-icon {
        width: 60px;
        height: 40px;
    }

    .bank-icon img {
        width: 40px;
        height: 25px;
    }

    .bank-icon-hidden {
        display: none;
    }
}

@media (max-width: 768px) {
    .qr-icon {
        display: none !important;
    }
    
    .payment-card {
        width: 95%;
        border-radius: 20px;
    }
    
    .left-panel, .right-panel {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .site-name {
        font-size: 26px;
    }

    .bank-icons {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .bank-icon {
        width: 55px;
        height: 38px;
    }

    .bank-icon img {
        width: 38px;
        height: 24px;
    }

    .bank-icon-hidden {
        display: none;
    }

    .detail-item:first-of-type .copy-icon {
        display: none;
    }

    .detail-value {
        padding-right: 50px;
    }
}

@media (max-width: 480px) {
    .bank-icons {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        padding: 0 8px;
    }
    
    .bank-icon {
        width: 50px;
        height: 35px;
    }

    .bank-icon img {
        width: 35px;
        height: 22px;
    }

    .bank-icon-hidden {
        display: none;
    }
}

.alert-box {
    background: rgba(52, 152, 219, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    margin: 20px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: slideIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
}


.alert-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.alert-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .alert-box {
        margin: 15px 0;
        padding: 18px 20px;
        border-radius: 15px;
    }
    
    .alert-content {
        gap: 12px;
    }
    
    .alert-text {
        font-size: 13px;
    }
}

/* Ne yapsam donmez, donmez ki bir daha. */








































































