/* Arze Home - Premium Custom Dialog System */

.arze-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none; /* Varsayılan olarak gizli (Bloklamayı önler) */
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arze-dialog-overlay.active {
    opacity: 1;
}

.arze-dialog-box {
    background: #fff;
    width: 95%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid #d4af37; /* Gold detail */
}

.arze-dialog-overlay.active .arze-dialog-box {
    transform: scale(1);
}

.arze-dialog-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arze-dialog-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.arze-dialog-content {
    padding: 30px 25px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
}

.arze-dialog-footer {
    padding: 15px 25px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.arze-dialog-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.arze-dialog-btn-close {
    background: #f0f0f0;
    color: #444;
}

.arze-dialog-btn-close:hover {
    background: #e0e0e0;
}

.arze-dialog-btn-confirm {
    background: #d4af37;
    color: #fff;
}

.arze-dialog-btn-confirm:hover {
    background: #b8962d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Custom scrollbar for content */
.arze-dialog-content::-webkit-scrollbar {
    width: 6px;
}
.arze-dialog-content::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}
/* Cookie Bar Styles */
.arze-cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 5px solid #d4af37;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.arze-cookie-bar.active {
    transform: translateY(0);
}

.arze-cookie-content {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.arze-cookie-content a {
    color: #d4af37;
    text-decoration: underline;
    font-weight: 600;
}

.arze-cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .arze-cookie-bar {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

/* Juridical Text Improvements */
.juridical-text {
    text-align: justify;
}
.juridical-text h1, .juridical-text h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
}
.juridical-text h3 {
    color: #a8863e;
    margin-top: 25px;
    margin-bottom: 12px;
}
.juridical-text table {
    width: 100%;
    margin: 15px 0;
    overflow-x: auto;
    display: table;
}
.juridical-text input[type="checkbox"] {
    position: relative;
    top: 2px;
    margin-right: 8px;
}
