/* Cookie Consent Banner Styles */
#cookie-consent-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.cookie-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

.cookie-consent-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cookie-consent-content {
    padding: 35px 30px;
}

.cookie-consent-content h3 {
    margin: 0 0 20px 0;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.cookie-consent-content > p {
    margin: 0 0 25px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.cookie-consent-options {
    margin: 25px 0 30px 0;
}

.cookie-option {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 15px;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #d00012;
}

.cookie-option-header input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-option-header label {
    margin: 0;
    font-size: 16px;
    cursor: pointer;
    flex: 1;
    color: #1a1a1a;
}

.cookie-option-description {
    margin: 0 0 0 32px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-cookie {
    flex: 1;
    min-width: 150px;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-accept {
    background: #d00012;
    color: #ffffff;
}

.btn-accept:hover {
    background: #a00010;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(208, 0, 18, 0.3);
}

.btn-selected {
    background: #333333;
    color: #ffffff;
}

.btn-selected:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-reject {
    background: #f8f9fa;
    color: #333333;
    border: 2px solid #e0e0e0;
}

.btn-reject:hover {
    background: #e9ecef;
    border-color: #ccc;
}

.cookie-consent-info {
    margin: 0;
    font-size: 13px;
    color: #777;
    text-align: center;
}

.cookie-consent-info a {
    color: #d00012;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-info a:hover {
    color: #a00010;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-modal {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-consent-content {
        padding: 25px 20px;
    }

    .cookie-consent-content h3 {
        font-size: 22px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        min-width: unset;
    }
}

/* Cookie Settings Link in Footer */
.cookie-settings-link {
    cursor: pointer;
    color: inherit;
    text-decoration: underline;
}

.cookie-settings-link:hover {
    color: #d00012;
}
