/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid #eaeaea;
}

.cookie-consent-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-consent-text {
        flex: 1;
    }
}

.cookie-consent-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.cookie-consent-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-accept {
    background-color: #4F46E5; /* Primary color from your site */
    color: white;
}

.cookie-accept:hover {
    background-color: #4338ca;
}

.cookie-settings {
    background-color: #f3f4f6;
    color: #4b5563;
}

.cookie-settings:hover {
    background-color: #e5e7eb;
}

.cookie-reject {
    background-color: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.cookie-reject:hover {
    background-color: #f9fafb;
}

.cookie-link {
    color: #4F46E5;
    text-decoration: underline;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-settings-content {
    background-color: white;
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.cookie-settings-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-settings-body > p {
    margin-bottom: 1.5rem;
    color: #555;
}

.cookie-settings-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.cookie-settings-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-settings-option-header {
    margin-bottom: 0.5rem;
}

.cookie-settings-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.cookie-settings-label input {
    margin-right: 0.5rem;
}

.cookie-settings-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.cookie-settings-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: flex-end;
}
