
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.cookie-overlay.show {
    display: flex;
}

@media (min-width: 640px) {
    .cookie-overlay {
        align-items: center;
    }
}

.cookie-modal {
    background-color: #F7FFF7;
    width: 100%;
    max-width: 42rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #2A5B87;
    overflow: hidden;
}

.cookie-content {
    padding: 1.5rem;
}

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

.cookie-icon {
    padding: 0.5rem;
    background-color: rgba(42, 91, 135, 0.1);
    border-radius: 0.5rem;
    color: #2A5B87;
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A2E;
}

.cookie-text {
    font-size: 0.875rem;
    color: rgba(26, 26, 46, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-details {
    background-color: rgba(42, 91, 135, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: none;
}

.cookie-details.show {
    display: block;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.cookie-option-desc {
    font-size: 0.75rem;
    color: #4b5563;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .cookie-actions {
        flex-direction: row;
        justify-content: flex-end;
    }
}

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

.cookie-btn-link {
    background: none;
    color: #2A5B87;
    text-decoration: underline;
    margin-right: auto;
    padding: 0.5rem 0;
}

.cookie-btn-secondary {
    background-color: #f3f4f6;
    color: #1A1A2E;
}

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

.cookie-btn-outline {
    background: transparent;
    border: 1px solid #2A5B87;
    color: #2A5B87;
}

.cookie-btn-outline:hover {
    background-color: rgba(42, 91, 135, 0.05);
}

.cookie-btn-primary {
    background-color: #2A5B87;
    color: white;
}

.cookie-btn-primary:hover {
    background-color: #1A1A2E;
}
