/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.step-indicator {
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6c757d;
    color: #fff;
    line-height: 40px;
    margin: 0 auto;
    font-weight: bold;
}

.step.active .circle {
    background: #0d6efd;
    /* Bootstrap primary */
}

.step .label {
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
}

.step.active .label {
    color: #0d6efd;
    font-weight: bold;
}

.line {
    height: 3px;
    background: #6c757d;
    flex: 1;
    margin: 0 5px;
}

/* Modern Plan Kartları CSS */
.plan-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hover efekti */
.plan-card:hover {
    /* transform: translateY(-8px) scale(1.02); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Seçili kart durumu */
.plan-radio:checked + .select-indicator + .popular-badge + .card-body,
.plan-radio:checked ~ .card-body {
    color: white;
}

.plan-radio:checked ~ * {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Başlık stilleri */
.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    letter-spacing: -0.5px;
}

.plan-radio:checked ~ .card-body .card-title {
    color: white;
}

/* Fiyat stilleri */
.price-container {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-left: 0.2rem;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #718096;
    margin-left: 0.5rem;
}

.plan-radio:checked ~ .card-body .price,
.plan-radio:checked ~ .card-body .currency {
    color: white;
}

.plan-radio:checked ~ .card-body .price-period {
    color: rgba(255, 255, 255, 0.8);
}

/* Özellik listesi */
.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.7rem;
    color: white;
}

.feature-text {
    font-weight: 500;
    color: #4a5568;
}

.plan-radio:checked ~ .card-body .feature-text {
    color: white;
}

.plan-radio:checked ~ .card-body .feature-icon {
    background: #ffd700;
}

.plan-radio:checked ~ .card-body .feature-icon i {
    color: #2d3748;
}

/* Seçim göstergesi */
.select-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.plan-radio:checked ~ .select-indicator {
    opacity: 1;
    background: #ffd700;
    transform: scale(1.1);
}

.select-indicator i {
    font-size: 1rem;
    color: #667eea;
}

.plan-radio:checked ~ .select-indicator i {
    color: #2d3748;
}

/* Popüler rozet */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #2d3748;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

/* Modern sepete ekle butonu */
.modern-add-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 1rem 3rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.modern-add-cart-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    color: white !important;
}

/* Parlaklık efekti */
.plan-card::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.6s;
    z-index: 1;
}

.plan-card:hover::before {
    left: 100%;
}

/* Card body z-index */
.plan-card .card-body {
    position: relative;
    z-index: 2;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .price {
        font-size: 2.5rem;
    }

    .plan-card {
        margin-bottom: 1rem;
    }

    .modern-add-cart-btn {
        padding: 0.8rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* Animasyonlar */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card {
    animation: slideIn 0.6s ease-out;
}

/* Arka plan için gradient (isteğe bağlı - body'e ekleyebilirsiniz) */
.step-content {
    padding: 0;
    border-radius: 20px;
    margin: 2rem 0;
}

.modern-domain-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Modern Input Container */
.modern-input-container {
    position: relative;
}

.modern-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.modern-input {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.modern-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

/* Modern Choice Section */
.modern-choice-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-question {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.modern-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    display: block;
    margin-bottom: 1rem;
}

.modern-domain-btn {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-domain-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
    color: white !important;
}

/* Modern Purchase Section */
.modern-purchase-section {
    background: rgba(248, 250, 252, 0.8) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    backdrop-filter: blur(5px);
}

.modern-price-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.modern-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.7rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.modern-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
    background: white;
}

.modern-cart-btn {
    background: linear-gradient(135deg, #ff9500, #ff6b35) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3) !important;
}

.modern-cart-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4) !important;
}

/* Modern Alert */
.modern-alert {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(248, 250, 252, 0.9)
    ) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.modern-alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.modern-alert-header i {
    font-size: 1.5rem;
    color: #667eea;
}

.modern-alert-header h5 {
    color: #2d3748;
    font-weight: 700;
    margin: 0;
}

.modern-alert-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modern-section-title {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #667eea;
}

/* Modern DNS Methods */
.modern-dns-method {
    transition: all 0.3s ease;
}

/* .modern-dns-method:hover {
                                                                                                                    border-color: rgba(102, 126, 234, 0.3);
                                                                                                                    transform: translateY(-2px);
                                                                                                                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                                                                                                                } */

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.method-badge.a-record {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.method-badge.cname-record {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    font-size: 1rem;
}

.method-header h5 {
    color: #2d3748;
    font-weight: 700;
    margin: 0;
}

.modern-steps {
    padding-left: 1.5rem;
    counter-reset: step-counter;
}

.modern-steps li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    counter-increment: step-counter;
    padding-left: 1rem;
}

.dns-code {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Modern Info Box */
.modern-info-box {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-top: 1.5rem !important;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.info-header i {
    font-size: 1.3rem;
    color: #2d3748;
}

.modern-note-list {
    margin: 0;
    padding-left: 1.5rem;
}

.modern-note-list li {
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-domain-section {
        padding: 1rem;
    }

    .modern-choice-section,
    .modern-purchase-section {
        padding: 1rem !important;
    }

    .modern-alert {
        padding: 1.5rem !important;
    }

    .method-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .modern-section-title {
        font-size: 1.1rem;
    }

    .modern-steps {
        padding-left: 1rem;
    }

    .modern-steps li::before {
        left: -1.5rem;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-dns-method {
    animation: slideIn 0.6s ease-out;
}

.modern-dns-method:nth-child(2) {
    animation-delay: 0.1s;
}

.modern-dns-method:nth-child(3) {
    animation-delay: 0.2s;
}

/* Modern Header Tasarımı */
.modern-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin: 1rem 0 2rem 0;
    padding: 1.2rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Nazik arka plan efekti */
.modern-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(99, 102, 241, 0.03),
        transparent,
        rgba(139, 92, 246, 0.03),
        transparent
    );
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Logo/Başlık */
.header-brand {
    color: #374151 !important;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none !important;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.header-brand::before {
    content: "";
    font-size: 1.6rem;
}

/* Buton grubu container */
.header-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* Genel buton stilleri */
.modern-btn {
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.modern-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-2px);
}

.modern-btn:active {
    transform: translateY(0px);
}

/* Domain butonu - Soft mavi */
.btn-domain {
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.btn-domain:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    color: #1e40af;
}

/* Domain butonu - Soft mavi */
.btn-layout {
    background: rgba(59, 165, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 165, 246, 0.2);
    color: rgb(30, 175, 110);
}

.btn-layout:hover {
    background: rgba(59, 165, 246, 0.15);
    border-color: rgba(59, 165, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 165, 246, 0.15);
    color: rgb(30, 175, 110);
}

/* Ayarlar butonu - Soft mor */
.btn-settings {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #6d28d9;
}

.btn-settings:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
    color: #6d28d9;
}

/* Önizleme butonu - Beyaz glass */
.btn-preview {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #374151;
}

.btn-preview:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.12);
    color: #374151;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Temalar butonu - Gri glass */
.btn-themes {
    background: rgba(107, 114, 128, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 114, 128, 0.2);
    color: #4b5563;
}

.btn-themes:hover {
    background: rgba(107, 114, 128, 0.15);
    border-color: rgba(107, 114, 128, 0.3);
    color: #374151;
    box-shadow: 0 4px 16px rgba(107, 114, 128, 0.1);
}

/* Yayın butonu - Soft yeşil */
.btn-publish {
    background: rgba(16, 185, 129, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}

.btn-publish:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.btn-unpublish {
    background: rgba(239, 68, 68, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #7f1d1d;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}

.btn-unpublish:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
    color: #7f1d1d;
}

.btn-re {
    background: rgba(249, 115, 22, 0.12); /* turuncu 500'ün hafif tonu */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #7c2d12; /* turuncu 900 tonu (yazı için koyu) */
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}

.btn-re:hover {
    background: rgba(249, 115, 22, 0.18);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
    color: #7c2d12;
}

.btn-visible {
    background: rgba(249, 222, 22, 0.12); /* turuncu 500'ün hafif tonu */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 222, 22, 0.25);
    color: #7c6712; /* turuncu 900 tonu (yazı için koyu) */
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}

.btn-visible:hover {
    background: rgba(249, 222, 22, 0.18);
    border-color: rgba(249, 222, 22, 0.35);
    box-shadow: 0 4px 16px rgba(249, 222, 22, 0.2);
    color: #7c6712;
}

/* İkonlar */
.modern-btn i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .modern-header {
        padding: 1rem;
        border-radius: 12px;
        margin: 0.5rem 0 1.5rem 0;
    }

    .header-brand {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .header-actions {
        justify-content: center;
        gap: 0.5rem;
    }

    .modern-btn {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 110px;
        justify-content: center;
    }

    .btn-publish,
    .btn-unpublish {
        padding: 0.65rem 1.2rem;
        flex: 1;
        min-width: 130px;
    }
}

/* Focus durumları */
.modern-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Özel animasyonlar kaldırıldı - daha nazik */
.btn-publish:hover,
.btn-unpublish:hover {
    /* pulse animasyonu kaldırıldı */
}

.success-container {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.success-icon::before {
    content: "✓";
    font-size: 2.5em;
    color: white;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.success-title {
    font-size: 2.2em;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.success-subtitle {
    color: #6c757d;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(86, 171, 47, 0.3);
}

.status-badge-re {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 100%);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.status-badge-re:hover {
  background: linear-gradient(135deg, #ff7300 0%, #ffa947 100%);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.45);
  transform: translateY(-2px);
}


.products-section {
    margin: 40px 300px 0 300px;
}

.section-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: "📦";
    font-size: 1.2em;
}

.products-grid {
    display: grid;
    gap: 20px;
}

.product-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4facfe;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.product-description {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.4;
}

.product-date {
    text-align: right;
    min-width: 140px;
}

.date-label {
    font-size: 0.85em;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.date-value {
    font-size: 1.1em;
    font-weight: 700;
    color: #4c51bf;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
}

.stat-number {
    font-size: 2em;
    font-weight: 800;
    color: #4c51bf;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9em;
    font-weight: 500;
}

.decorative-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background: radial-gradient(circle, #4facfe 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        border-radius: 16px;
    }

    .modal-body {
        padding: 30px 0;
    }

    .success-title {
        font-size: 1.8em;
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-date {
        text-align: left;
        min-width: auto;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Animasyonlar */
.modal-content {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 100px; /* goTop'un üzerinde olması için */
    right: 27px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 7px;
}

/* Mobil için pozisyonu ayarla */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        bottom: 90px;
        right: 10px;
    }
}
