<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ======== MODERN MODAL STYLES ======== */

/* Ana Modal Container */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(5px);
    animation: modalBgFadeIn 0.3s forwards;
}

.custom-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalBgFadeIn {
    from { background-color: rgba(15, 23, 42, 0); }
    to { background-color: rgba(15, 23, 42, 0.3); }
}

/* Modal Ä°Ã§eriÄŸi - Ultra Oval */
.modal-content {
    width: 500px;
    max-width: 85%;
    background-color: #fff;
    border-radius: 70px; /* Ã‡ok daha bÃ¼yÃ¼k border-radius */
    box-shadow: 0 35px 70px rgba(0,0,0,0.15), 0 15px 25px rgba(0,0,0,0.1);
    position: relative;
    background-image: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    overflow: visible; /* Overflow'u kaldÄ±rarak iÃ§eriÄŸin kenarlarÄ± aÅŸmasÄ±na izin veriyoruz */
    padding: 8px;
    border: none;
    transform: scale(1.0);
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.08));
}

/* Modal BaÅŸlÄ±k - Ultra Oval */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px 15px;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    border-radius: 70px 70px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 8px;
}

.modal-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 10px;
}

/* Modal Kapatma Butonu (X) */
.modal-close {
    background: linear-gradient(135deg, #f64f59, #c471ed);
    border: none;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(246, 79, 89, 0.3);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(246, 79, 89, 0.4);
}

/* Modal Ä°Ã§erik AlanÄ± - Ultra Oval */
.modal-body {
    padding: 5px 40px 30px;
    max-height: 65vh;
    overflow-y: auto;
    border-radius: 40px;
    margin: 5px 8px;
}

/* Modal Alt KÄ±sÄ±m - Ultra Oval */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 40px 25px;
    background-color: transparent;
    border-top: none;
    border-radius: 0 0 70px 70px;
    margin-top: 5px;
}

/* Butonlar - Ultra Oval */
.btn-primary {
    padding: 14px 35px;
    background: linear-gradient(45deg, #6366f1, #a855f7, #ec4899);
    background-size: 300% auto;
    color: white;
    border: none;
    border-radius: 100px; /* Tam yuvarlak */
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    transform: scale(1.1); /* ButonlarÄ± biraz daha bÃ¼yÃ¼k yap */
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
    border-radius: 100px; /* Butonun TAMAMEN yuvarlak kalmasÄ±nÄ± saÄŸlar */
}

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

.btn-primary i {
    margin-right: 8px;
}

/* Modal AÃ§Ä±lÄ±ÅŸ Animasyonu - Ultra YumuÅŸak */
.custom-modal.show .modal-content {
    animation: modalSuperPopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalSuperPopIn {
    0% { transform: scale(0.5) translateY(50px); opacity: 0; filter: blur(10px); }
    60% { transform: scale(1.06); filter: blur(0); }
    75% { transform: scale(0.97); }
    85% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

/* ÃœrÃ¼n Detay Modali Ã–zel Stil */
.product-detail-content {
    width: 600px;
    max-width: 95%;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 10px 0;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    border-radius: 30px;
    height: 120px;
    width: 120px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);
}

.product-placeholder {
    font-size: 42px;
    color: #6366f1;
    opacity: 0.5;
}

.product-info h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 22px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.product-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, transparent);
    border-radius: 10px;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.meta-item {
    border: none;
    border-radius: 25px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e4e8ed 100%);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.meta-item label {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
}

.meta-item span {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

/* Mobil Responsive */
@media (max-width: 576px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .product-image {
        margin: 0 auto;
    }
}

/* YÃ¼kleniyor ModalÄ± */
.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-image: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
}

.spinner {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.spinner div {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 100%;
    display: inline-block;
    margin: 0 4px;
    animation: bouncedelay 1.4s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.spinner .bounce1 {
    animation-delay: -0.32s;
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.spinner .bounce2 {
    animation-delay: -0.16s;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

@keyframes bouncedelay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.2); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #666;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: rgba(0,0,0,0.05);
    color: #333;
}

.modal-body {
    padding: 20px;
    background-color: #fff;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    gap: 10px;
}

/* Product Detail Modal */
.product-detail-content {
    max-width: 700px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    height: 200px;
}

.product-placeholder {
    font-size: 5rem;
    color: #ddd;
}

.product-info h2 {
    margin-bottom: 16px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.meta-item {
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
}

.meta-item label {
    display: block;
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 4px;
}

.meta-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.product-description h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #666;
}

.product-description p {
    color: #555;
    line-height: 1.6;
}

/* Form Styles for Modals */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:nth-child(3) {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Modal Buttons */
.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #5a35a0;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.2);
}

.btn-secondary {
    background-color: #f2f2f2;
    color: #444;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(3) {
        grid-column: auto;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
    }
}
</pre></body></html>